forked from okta/terraform-provider-okta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpreconfigured.tf
39 lines (39 loc) · 892 Bytes
/
preconfigured.tf
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
resource "okta_app_saml" "test" {
preconfigured_app = "office365"
label = "testAcc_replace_with_uuid"
status = "ACTIVE"
saml_version = "1.1"
app_settings_json = <<JSON
{
"wsFedConfigureType": "AUTO",
"windowsTransportEnabled": false,
"domain": "okta.com",
"msftTenant": "okta",
"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,
"word": false,
"yammer": false,
"login": true
}
JSON
}