Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/resources/app_signon_policy_rule.md
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,7 @@ resource "okta_app_signon_policy_rule" "test" {
- `users_excluded` (Set of String) Set of User IDs to exclude
- `users_included` (Set of String) Set of User IDs to include
- `chains` (Block List) Authentication method chains. Only supports 5 items in the array. Each chain can support maximum 3 steps. To be used only with verification method type `AUTH_METHOD_CHAIN`.(see [below for nested schema](#nestedblock--chains))
- `office365_client_include` (Set of String) Set of Office 365 Client IDs to include. Only available with Office 365 applications. Valid values include `WEB`, `MODERN_AUTH`, `ACTIVE_SYNC`, `AAD_JOIN`, `CERT_BASED_AUTH`.

### Read-Only

Expand Down
4 changes: 2 additions & 2 deletions okta/services/idaas/resource_okta_app_signon_policy_rule.go
Original file line number Diff line number Diff line change
Expand Up @@ -264,10 +264,10 @@ The only difference is that these fields are immutable and can not be managed: '
"office365_client_include": {
Type: schema.TypeSet,
Optional: true,
Description: "Office 365 client types to include. Valid values: WEB, MODERN_AUTH, EXCHANGE_ACTIVE_SYNC, AAD_JOIN. This condition is specific to Office 365 applications.",
Description: "Office 365 client types to include. Valid values: WEB, MODERN_AUTH, ACTIVE_SYNC, AAD_JOIN, CERT_BASED_AUTH. This condition is specific to Office 365 applications.",
Elem: &schema.Schema{
Type: schema.TypeString,
ValidateDiagFunc: validation.ToDiagFunc(validation.StringInSlice([]string{"WEB", "MODERN_AUTH", "EXCHANGE_ACTIVE_SYNC", "AAD_JOIN"}, false)),
ValidateDiagFunc: validation.ToDiagFunc(validation.StringInSlice([]string{"WEB", "MODERN_AUTH", "ACTIVE_SYNC", "AAD_JOIN", "CERT_BASED_AUTH"}, false)),
},
},
},
Expand Down