We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6452193 commit 1a2724fCopy full SHA for 1a2724f
resources.tf
@@ -2,13 +2,8 @@ resource "okta_app_oauth" "app" {
2
label = var.label
3
type = var.type
4
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
- )
+ login_uri = formatlist("%s/oauth2/default", var.urls).0
+ redirect_uris = concat(formatlist("%s/oauth2/callback", var.urls))
12
status = var.status
13
auto_key_rotation = var.key_rotation
14
#logo_uri = var.logo_uri # disabled as a recent update seems to disallow this to be set to an empty string
0 commit comments