From dcb6fc1f207987d8c0cd4960eebb041dd7c667f0 Mon Sep 17 00:00:00 2001 From: hcornet Date: Thu, 20 Nov 2025 12:49:37 +0100 Subject: [PATCH] update --- Integrations-Identity_providers.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Integrations-Identity_providers.tf b/Integrations-Identity_providers.tf index 6d3340a..d2670c0 100644 --- a/Integrations-Identity_providers.tf +++ b/Integrations-Identity_providers.tf @@ -24,13 +24,13 @@ resource "cloudflare_zero_trust_access_identity_provider" "authentik_oidc" { zone_id = local.cloudflare_zone_id config = { - auth_url = "https://authentik.${local.cloudflare_email_domain}/application/o/authorize/" - certs_url = "https://authentik.${local.cloudflare_email_domain}/application/o/cloudflare-access/jwks/" + auth_url = "https://authentik.${var.cloudflare_email_domain}/application/o/authorize/" + certs_url = "https://authentik.${var.cloudflare_email_domain}/application/o/cloudflare-access/jwks/" claims = ["given_name", "preferred_username", "nickname", "groups", "role"] client_id = local.authentik_oidc_client_id_cloudflare client_secret = local.authentik_oidc_secret_cloudflare email_claim_name = "email" scopes = ["openid", "email", "profile"] - token_url = "https://authentik.${local.cloudflare_email_domain}/application/o/token/" + token_url = "https://authentik.${var.cloudflare_email_domain}/application/o/token/" } }