diff --git a/docs/data-sources/client.md b/docs/data-sources/client.md index d340800e2..95fb569e3 100644 --- a/docs/data-sources/client.md +++ b/docs/data-sources/client.md @@ -52,7 +52,7 @@ data "auth0_client" "some-client-by-id" { - `id` (String) The ID of this resource. - `initiate_login_uri` (String) Initiate login URI. Must be HTTPS or an empty string. - `is_first_party` (Boolean) Indicates whether this client is a first-party client. -- `is_token_endpoint_ip_header_trusted` (Boolean) Indicates whether the token endpoint IP header is trusted. This attribute will get updated only after the client gets created. +- `is_token_endpoint_ip_header_trusted` (Boolean) Indicates whether the token endpoint IP header is trusted. This attribute can only be updated after the client gets created. - `jwt_configuration` (List of Object) Configuration settings for the JWTs issued for this client. (see [below for nested schema](#nestedatt--jwt_configuration)) - `logo_uri` (String) URL of the logo for the client. Recommended size is 150px x 150px. If none is set, the default badge for the application type will be shown. - `mobile` (List of Object) Additional configuration for native mobile apps. (see [below for nested schema](#nestedatt--mobile)) diff --git a/docs/data-sources/global_client.md b/docs/data-sources/global_client.md index 510295699..433a0f9b4 100644 --- a/docs/data-sources/global_client.md +++ b/docs/data-sources/global_client.md @@ -40,7 +40,7 @@ data "auth0_global_client" "global" {} - `id` (String) The ID of this resource. - `initiate_login_uri` (String) Initiate login URI. Must be HTTPS or an empty string. - `is_first_party` (Boolean) Indicates whether this client is a first-party client. -- `is_token_endpoint_ip_header_trusted` (Boolean) Indicates whether the token endpoint IP header is trusted. This attribute will get updated only after the client gets created. +- `is_token_endpoint_ip_header_trusted` (Boolean) Indicates whether the token endpoint IP header is trusted. This attribute can only be updated after the client gets created. - `jwt_configuration` (List of Object) Configuration settings for the JWTs issued for this client. (see [below for nested schema](#nestedatt--jwt_configuration)) - `logo_uri` (String) URL of the logo for the client. Recommended size is 150px x 150px. If none is set, the default badge for the application type will be shown. - `mobile` (List of Object) Additional configuration for native mobile apps. (see [below for nested schema](#nestedatt--mobile)) diff --git a/docs/resources/client.md b/docs/resources/client.md index 8e82d0597..ce6719a26 100644 --- a/docs/resources/client.md +++ b/docs/resources/client.md @@ -108,7 +108,7 @@ resource "auth0_client" "my_client" { - `grant_types` (List of String) Types of grants that this client is authorized to use. - `initiate_login_uri` (String) Initiate login URI. Must be HTTPS or an empty string. - `is_first_party` (Boolean) Indicates whether this client is a first-party client. -- `is_token_endpoint_ip_header_trusted` (Boolean) Indicates whether the token endpoint IP header is trusted. This attribute will get updated only after the client gets created. +- `is_token_endpoint_ip_header_trusted` (Boolean) Indicates whether the token endpoint IP header is trusted. This attribute can only be updated after the client gets created. - `jwt_configuration` (Block List, Max: 1) Configuration settings for the JWTs issued for this client. (see [below for nested schema](#nestedblock--jwt_configuration)) - `logo_uri` (String) URL of the logo for the client. Recommended size is 150px x 150px. If none is set, the default badge for the application type will be shown. - `mobile` (Block List, Max: 1) Additional configuration for native mobile apps. (see [below for nested schema](#nestedblock--mobile)) diff --git a/docs/resources/global_client.md b/docs/resources/global_client.md index c78872855..572380a88 100644 --- a/docs/resources/global_client.md +++ b/docs/resources/global_client.md @@ -52,7 +52,7 @@ PAGE - `grant_types` (List of String) Types of grants that this client is authorized to use. - `initiate_login_uri` (String) Initiate login URI. Must be HTTPS or an empty string. - `is_first_party` (Boolean) Indicates whether this client is a first-party client. -- `is_token_endpoint_ip_header_trusted` (Boolean) Indicates whether the token endpoint IP header is trusted. This attribute will get updated only after the client gets created. +- `is_token_endpoint_ip_header_trusted` (Boolean) Indicates whether the token endpoint IP header is trusted. This attribute can only be updated after the client gets created. - `jwt_configuration` (Block List, Max: 1) Configuration settings for the JWTs issued for this client. (see [below for nested schema](#nestedblock--jwt_configuration)) - `logo_uri` (String) URL of the logo for the client. Recommended size is 150px x 150px. If none is set, the default badge for the application type will be shown. - `mobile` (Block List, Max: 1) Additional configuration for native mobile apps. (see [below for nested schema](#nestedblock--mobile)) diff --git a/internal/auth0/client/resource.go b/internal/auth0/client/resource.go index 21b243f80..84321bfc7 100644 --- a/internal/auth0/client/resource.go +++ b/internal/auth0/client/resource.go @@ -110,7 +110,7 @@ func NewResource() *schema.Resource { Type: schema.TypeBool, Optional: true, Computed: true, - Description: "Indicates whether the token endpoint IP header is trusted. This attribute will get updated only after the client gets created.", + Description: "Indicates whether the token endpoint IP header is trusted. This attribute can only be updated after the client gets created.", }, "oidc_conformant": { Type: schema.TypeBool, diff --git a/internal/auth0/client/resource_test.go b/internal/auth0/client/resource_test.go index 1a1b8aa0b..bad0dc881 100644 --- a/internal/auth0/client/resource_test.go +++ b/internal/auth0/client/resource_test.go @@ -977,7 +977,6 @@ resource "auth0_client" "my_client" { name = "Test IP Header Trusted - {{.testName}}" is_token_endpoint_ip_header_trusted = true - # token_endpoint_auth_method = "client_secret_post" } resource "auth0_client_credentials" "my_client-credentials" {