Skip to content

Commit

Permalink
Merge pull request #1348 from zlitberg/master
Browse files Browse the repository at this point in the history
updates to documentation
  • Loading branch information
monde authored Nov 17, 2022
2 parents e24ce9a + 3d7bd51 commit 25ee575
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions website/docs/r/app_user_schema_property.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,15 @@ 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"`.

- `array_enum` - (Optional) Array of values that an array property's items can be set to.

- `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"`.
Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/auth_server_policy.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
6 changes: 3 additions & 3 deletions website/docs/r/auth_server_policy_rule.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -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.
Expand Down

0 comments on commit 25ee575

Please sign in to comment.