diff --git a/website/docs/r/app_user_schema_property.html.markdown b/website/docs/r/app_user_schema_property.html.markdown index 580f59e1f..313cb03d5 100644 --- a/website/docs/r/app_user_schema_property.html.markdown +++ b/website/docs/r/app_user_schema_property.html.markdown @@ -58,7 +58,7 @@ The following arguments are supported: - `max_length` - (Optional) The maximum length of the user property value. Only applies to type `"string"`. -- `scope` - (Optional) determines whether an app user attribute can be set at the Individual or Group Level. +- `scope` - (Optional) determines whether an app user attribute can be set at the Personal `"SELF"` or Group `"NONE"` level. Default value is `"NONE"`. - `array_type` - (Optional) The type of the array elements if `type` is set to `"array"`. @@ -66,7 +66,7 @@ The following arguments are supported: - `array_one_of` - (Optional) Display name and value an enum array can be set to. - - `const` - (Required) value mapping to member of `enum`. + - `const` - (Required) value mapping to member of `array_enum`. - `title` - (Required) display name for the enum value. - `permissions` - (Optional) Access control permissions for the property. It can be set to `"READ_WRITE"`, `"READ_ONLY"`, `"HIDE"`. @@ -77,7 +77,7 @@ The following arguments are supported: - `external_namespace` - (Optional) External namespace of the user schema property. -- `union` - (Optional) Used to assign attribute group priority. Can not be set to 'true' if `scope` is set to Individual level. +- `union` - (Optional) If `type` is set to `"array"`, used to set whether attribute value is determined by group priority `false`, or combine values across groups `true`. Can not be set to `true` if `scope` is set to `"SELF"`. ## Attributes Reference diff --git a/website/docs/r/auth_server_policy.html.markdown b/website/docs/r/auth_server_policy.html.markdown index ffc6320b2..1a21e15b0 100644 --- a/website/docs/r/auth_server_policy.html.markdown +++ b/website/docs/r/auth_server_policy.html.markdown @@ -37,7 +37,7 @@ The following arguments are supported: - `priority` - (Required) The priority of the Auth Server Policy. -- `description` - (Optional) The description of the Auth Server Policy. +- `description` - (Required) The description of the Auth Server Policy. - `client_whitelist` - (Required) The clients to whitelist the policy for. `["ALL_CLIENTS"]` is a special value that can be used to whitelist all clients, otherwise it is a list of client ids. diff --git a/website/docs/r/auth_server_policy_rule.html.markdown b/website/docs/r/auth_server_policy_rule.html.markdown index 7a5b74462..f27ed6f35 100644 --- a/website/docs/r/auth_server_policy_rule.html.markdown +++ b/website/docs/r/auth_server_policy_rule.html.markdown @@ -50,7 +50,7 @@ The following arguments are supported: - `user_blacklist` - (Optional) Specifies a set of Users to be excluded. -- `group_whitelist` - (Optional) Specifies a set of Groups whose Users are to be included. Can be set to Group ID or to the following: "EVERYONE". +- `group_whitelist` - (Optional) Specifies a set of Groups whose Users are to be included. Can be set to Group ID or to the following: `"EVERYONE"`. - `group_blacklist` - (Optional) Specifies a set of Groups whose Users are to be excluded. @@ -60,11 +60,11 @@ The following arguments are supported: - `scope_whitelist` - (Required) Scopes allowed for this policy rule. They can be whitelisted by name or all can be whitelisted with `"*"`. -- `access_token_lifetime_minutes` - (Optional) Lifetime of access token. Can be set to a value between 5 and 1440 minutes. +- `access_token_lifetime_minutes` - (Optional) Lifetime of access token. Can be set to a value between 5 and 1440 minutes. Default is `60`. - `refresh_token_lifetime_minutes` - (Optional) Lifetime of refresh token. -- `refresh_token_window_minutes` - (Optional) Window in which a refresh token can be used. It can be a value between 5 and 2628000 (5 years) minutes. +- `refresh_token_window_minutes` - (Optional) Window in which a refresh token can be used. It can be a value between 5 and 2628000 (5 years) minutes. Default is `10080` (7 days). `"refresh_token_window_minutes"` must be between `"access_token_lifetime_minutes"` and `"refresh_token_lifetime_minutes"`. - `inline_hook_id` - (Optional) The ID of the inline token to trigger.