forked from okta/terraform-provider-okta
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasic_preconfigured_apps_updated.tf
More file actions
35 lines (31 loc) · 1.03 KB
/
basic_preconfigured_apps_updated.tf
File metadata and controls
35 lines (31 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
resource "okta_app_oauth" "test1" {
preconfigured_app = "strongdm"
label = "StrongDM_Updated"
type = "web"
redirect_uris = ["https://strongdm.example.com/callback"]
}
resource "okta_app_oauth" "test2" {
preconfigured_app = "Applauz"
label = "Applauz_Updated"
type = "web"
redirect_uris = ["https://applauz.example.com/callback"]
}
resource "okta_app_oauth" "test3" {
preconfigured_app = "Deel"
label = "Deel_Updated"
type = "web"
redirect_uris = ["https://deel.example.com/callback"]
}
resource "okta_app_oauth" "test4" {
label = "StrongDM_CUSTOM_Updated"
type = "web"
redirect_uris = ["http://redirect-uri-2-updated.com/"]
}
resource "okta_app_oauth" "test5" {
label = "CustomApp001_Updated"
type = "web"
grant_types = ["implicit", "authorization_code"]
redirect_uris = ["http://redirect-uri-updated.com/"]
response_types = ["code", "token", "id_token"]
issuer_mode = "ORG_URL"
}