Update gateway_dns_location.tf
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 49s

This commit is contained in:
2025-11-17 19:57:59 +01:00
parent c47b2a3cca
commit b83b60897f

View File

@@ -3,7 +3,15 @@
# ============================================================================= # =============================================================================
# #
resource "cloudflare_zero_trust_dns_location" "example_zero_trust_dns_location" { resource "cloudflare_zero_trust_dns_location" "dns_location_office" {
account_id = local.cloudflare_account_id
name = "Office Location"
client_default = false
ecs_support = false
}
#
resource "cloudflare_zero_trust_dns_location" "dns_location_home" {
account_id = local.cloudflare_account_id account_id = local.cloudflare_account_id
name = "Home Office Location" name = "Home Office Location"
client_default = false client_default = false
@@ -36,4 +44,12 @@ resource "cloudflare_zero_trust_dns_location" "example_zero_trust_dns_location"
networks = [{ networks = [{
network = "82.66.77.254/32" network = "82.66.77.254/32"
}] }]
} }
#
resource "cloudflare_zero_trust_dns_location" "dns_location_vacation" {
account_id = local.cloudflare_account_id
name = "Vacation Location"
client_default = false
ecs_support = false
}