From 8e7cd67016f271a4f3268136535abbdf12eb4769 Mon Sep 17 00:00:00 2001 From: Hubert Cornet Date: Tue, 18 Nov 2025 08:25:19 +0100 Subject: [PATCH] Update access_applications.tf --- access_applications.tf | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/access_applications.tf b/access_applications.tf index 9ed7f51..7b67875 100644 --- a/access_applications.tf +++ b/access_applications.tf @@ -10,8 +10,12 @@ resource "cloudflare_zero_trust_access_application" "example_zero_trust_access_a domain = "home.tips-of-mine.org" session_duration = "24h" skip_interstitial = true - tags = ["engineers"] -} +# tags = ["engineers"] + tags = [for tag in cloudflare_zero_trust_access_tag.tags : tag.name] + + depends_on = [ + cloudflare_zero_trust_access_tag.tags + ] data "cloudflare_zero_trust_access_application" "example_zero_trust_access_application" { account_id = local.cloudflare_account_id