diff --git a/auth0/resource_auth0_client.go b/auth0/resource_auth0_client.go index 70c9bfce0..4f9fc123f 100644 --- a/auth0/resource_auth0_client.go +++ b/auth0/resource_auth0_client.go @@ -596,10 +596,6 @@ func newClient() *schema.Resource { Type: schema.TypeString, Computed: true, }, - "subject": { - Type: schema.TypeString, - Computed: true, - }, }, }, }, diff --git a/docs/resources/client.md b/docs/resources/client.md index 4df5837f5..623b358a4 100644 --- a/docs/resources/client.md +++ b/docs/resources/client.md @@ -260,7 +260,7 @@ Attributes exported by this resource include: * `grant_types` - List(String). Types of grants that this client is authorized to use. * `custom_login_page_on` - Boolean. Indicates whether or not a custom login page is to be used. * `token_endpoint_auth_method` - String. Defines the requested authentication method for the token endpoint. Options include `none` (public client without a client secret), `client_secret_post` (client uses HTTP POST parameters), `client_secret_basic` (client uses HTTP Basic). -* `signing_keys` - List(Map). List containing a map of the public cert of the signing key, the public cert of the signing key in pkcs7, and subject. +* `signing_keys` - List(Map). List containing a map of the public cert of the signing key and the public cert of the signing key in pkcs7 ### Client keys To access the `client_secret` attribute you need to add the `read:client_keys` scope to the Terraform client. Otherwise, the attribute will contain an empty string.