forked from okta/terraform-provider-okta
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasic.tf
More file actions
21 lines (21 loc) · 688 Bytes
/
basic.tf
File metadata and controls
21 lines (21 loc) · 688 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
resource "okta_app_oauth" "test" {
label = "testAcc_replace_with_uuid"
type = "web"
grant_types = ["authorization_code"]
redirect_uris = ["https://example.com/callback"]
response_types = ["code"]
token_endpoint_auth_method = "client_secret_basic"
consent_method = "TRUSTED"
issuer_mode = "ORG_URL"
wildcard_redirect = "DISABLED"
participate_slo = true
frontchannel_logout_uri = "https://example.com/logout"
groups_claim {
type = "EXPRESSION"
value = "aa"
name = "bb"
}
network {
connection = "ANYWHERE"
}
}