From 5a427d3dea2e3ee6404c19517c9f3e25e162088b Mon Sep 17 00:00:00 2001 From: Hubert Cornet Date: Sun, 16 Nov 2025 13:28:35 +0100 Subject: [PATCH] Update access_groups.tf --- access_groups.tf | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/access_groups.tf b/access_groups.tf index 6ba33b3..91b1855 100644 --- a/access_groups.tf +++ b/access_groups.tf @@ -9,11 +9,9 @@ resource "cloudflare_zero_trust_access_policy" "allow_policie" { decision = "allow" session_duration = "24h" - include = [ - { - group = { - id = [cloudflare_zero_trust_access_group.default_groups.id] - } + include = [{ + group = { + id = cloudflare_zero_trust_access_group.default_groups.id } - ] + }] } \ No newline at end of file