Add access_tags.tf
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 7s

This commit is contained in:
2025-11-14 18:55:28 +01:00
parent 2abb4daa83
commit a28b3090f6

10
access_tags.tf Normal file
View File

@@ -0,0 +1,10 @@
# =============================================================================
# CLOUDFLARE : Access : Tags
# =============================================================================
#
resource "cloudflare_zero_trust_access_tag" "tags" {
for_each = toset(var.cloudflare_access_tags)
account_id = local.cloudflare_account_id
name = each.value
}