diff --git a/terraform/modules/zero_trust_application/main.tf b/terraform/modules/zero_trust_application/main.tf index fdcd1c0..64d755a 100644 --- a/terraform/modules/zero_trust_application/main.tf +++ b/terraform/modules/zero_trust_application/main.tf @@ -6,7 +6,7 @@ resource "cloudflare_access_policy" "policy" { decision = "allow" include { - group = var.group_list + group = ["dc009146-1f84-4d2c-bbd4-670ee9d65d5d"] } } diff --git a/terraform/modules/zero_trust_application/variables.tf b/terraform/modules/zero_trust_application/variables.tf index 7d38495..c613e07 100644 --- a/terraform/modules/zero_trust_application/variables.tf +++ b/terraform/modules/zero_trust_application/variables.tf @@ -6,9 +6,4 @@ variable "names" { variable "cloudflare_zone_id" { description = "The zone ID for Cloudflare" type = string -} - -variable "group_list" { - description = "zero trust access group list" - type = list(string) } \ No newline at end of file diff --git a/terraform/variables.tf b/terraform/variables.tf index 2c9d3ef..4ac6a56 100644 --- a/terraform/variables.tf +++ b/terraform/variables.tf @@ -11,9 +11,4 @@ variable "cloudflare_api_key" { variable "cloudflare_zone_id" { description = "The zone ID for Cloudflare" type = string -} - -variable "group_list" { - description = "zero trust access group list" - type = list(string) } \ No newline at end of file