From abd4088eb2640cfdc6a5e6003ceb1b58a238d944 Mon Sep 17 00:00:00 2001 From: Will Vedder Date: Mon, 11 Sep 2023 09:08:38 -0400 Subject: [PATCH] Removing `token_endpoint_auth_method` from `auth0_client` example (#822) Co-authored-by: Will Vedder Co-authored-by: Sergiu Ghitea <28300158+sergiught@users.noreply.github.com> --- docs/resources/client.md | 1 - examples/resources/auth0_client/resource.tf | 1 - 2 files changed, 2 deletions(-) diff --git a/docs/resources/client.md b/docs/resources/client.md index 94f23403a..cfccc5985 100644 --- a/docs/resources/client.md +++ b/docs/resources/client.md @@ -18,7 +18,6 @@ resource "auth0_client" "my_client" { custom_login_page_on = true is_first_party = true is_token_endpoint_ip_header_trusted = true - token_endpoint_auth_method = "client_secret_post" oidc_conformant = false callbacks = ["https://example.com/callback"] allowed_origins = ["https://example.com"] diff --git a/examples/resources/auth0_client/resource.tf b/examples/resources/auth0_client/resource.tf index 7717b6193..43142a851 100644 --- a/examples/resources/auth0_client/resource.tf +++ b/examples/resources/auth0_client/resource.tf @@ -5,7 +5,6 @@ resource "auth0_client" "my_client" { custom_login_page_on = true is_first_party = true is_token_endpoint_ip_header_trusted = true - token_endpoint_auth_method = "client_secret_post" oidc_conformant = false callbacks = ["https://example.com/callback"] allowed_origins = ["https://example.com"]