diff --git a/docs/data-sources/app_oauth.md b/docs/data-sources/app_oauth.md index 2207d3f89..7901f728a 100644 --- a/docs/data-sources/app_oauth.md +++ b/docs/data-sources/app_oauth.md @@ -56,6 +56,6 @@ data "okta_app_oauth" "test" { - `response_types` (Set of String) List of OAuth 2.0 response type strings. - `status` (String) Status of application. - `type` (String) The type of OAuth application. -- `wildcard_redirect` (String) Indicates if the client is allowed to use wildcard matching of redirect_uris +- `wildcard_redirect` (String) Indicates if the client is allowed to use wildcard matching of redirect_uris. Some valid values include: "SUBDOMAIN", "DISABLED". diff --git a/okta/data_source_okta_app_oauth.go b/okta/data_source_okta_app_oauth.go index 4a3fd86bc..6bbc6a790 100644 --- a/okta/data_source_okta_app_oauth.go +++ b/okta/data_source_okta_app_oauth.go @@ -151,7 +151,7 @@ func dataSourceAppOauth() *schema.Resource { "wildcard_redirect": { Type: schema.TypeString, Computed: true, - Description: "Indicates if the client is allowed to use wildcard matching of redirect_uris", + Description: "Indicates if the client is allowed to use wildcard matching of redirect_uris. Some valid values include: \"SUBDOMAIN\", \"DISABLED\".", }, }), Description: "Get a OIDC application from Okta.",