From 29a3e974a641e2b523cc12fcf3175052455c1dc6 Mon Sep 17 00:00:00 2001 From: Hubert Cornet Date: Fri, 14 Nov 2025 21:37:33 +0100 Subject: [PATCH] Update access_applications.tf --- access_applications.tf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/access_applications.tf b/access_applications.tf index 3001999..cc09c78 100644 --- a/access_applications.tf +++ b/access_applications.tf @@ -5,12 +5,13 @@ # resource "cloudflare_zero_trust_access_application" "example_zero_trust_access_application" { account_id = local.cloudflare_account_id + type = "infrastructure" name = "Home Network Access Application" domain = "home.tips-of-mine.org" type = "self_hosted" session_duration = "24h" skip_interstitial = true - tags = ["engineers"] + tags = [cloudflare_zero_trust_access_tag.tags.name] } data "cloudflare_zero_trust_access_application" "example_zero_trust_access_application" {