From 60ba0d97a58a7ef6b19cd6838afa4954d254d05d Mon Sep 17 00:00:00 2001 From: Hubert Cornet Date: Sun, 16 Nov 2025 13:26:04 +0100 Subject: [PATCH] Update access_groups.tf --- access_groups.tf | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/access_groups.tf b/access_groups.tf index f4fac60..9dee9db 100644 --- a/access_groups.tf +++ b/access_groups.tf @@ -9,7 +9,9 @@ resource "cloudflare_zero_trust_access_policy" "allow_policie" { decision = "allow" session_duration = "24h" - include [{ - group = [cloudflare_zero_trust_access_group.default_groups.id] - }] + include = [ + { + group = [cloudflare_zero_trust_access_group.default_groups.id] + } + ] } \ No newline at end of file