Skip to content

Commit 1a2724f

Browse files
committed
testing updated forward_auth
1 parent 6452193 commit 1a2724f

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

resources.tf

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,8 @@ resource "okta_app_oauth" "app" {
22
label = var.label
33
type = var.type
44
grant_types = var.grant_types
5-
login_uri = formatlist("%s/*", var.urls).0
6-
redirect_uris = concat(
7-
var.urls,
8-
formatlist("%s/oauth2/default/v1/authorize", var.urls),
9-
formatlist("%s/oauth2/callback", var.urls),
10-
formatlist("%s/*", var.urls)
11-
)
5+
login_uri = formatlist("%s/oauth2/default", var.urls).0
6+
redirect_uris = concat(formatlist("%s/oauth2/callback", var.urls))
127
status = var.status
138
auto_key_rotation = var.key_rotation
149
#logo_uri = var.logo_uri # disabled as a recent update seems to disallow this to be set to an empty string

0 commit comments

Comments
 (0)