forked from okta/terraform-provider-okta
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp_settings_json.tf
More file actions
41 lines (41 loc) · 1003 Bytes
/
app_settings_json.tf
File metadata and controls
41 lines (41 loc) · 1003 Bytes
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
36
37
38
39
40
41
resource "okta_app_swa" "test" {
preconfigured_app = "office365"
label = "testAcc_replace_with_uuid"
status = "ACTIVE"
app_settings_json = <<JSON
{
"wsFedConfigureType": "AUTO",
"windowsTransportEnabled": false,
"domain": "example.com",
"msftTenant": "exampletenant",
"domains": [],
"requireAdminConsent": false
}
JSON
app_links_json = <<JSON
{
"calendar": false,
"crm": false,
"delve": false,
"excel": false,
"forms": false,
"mail": false,
"newsfeed": false,
"onedrive": false,
"people": false,
"planner": false,
"powerbi": false,
"powerpoint": false,
"sites": false,
"sway": false,
"tasks": false,
"teams": false,
"video": false,
"word": false,
"yammer": false,
"login": true
}
JSON
user_name_template = "user.login"
user_name_template_type = "CUSTOM"
}