diff --git a/gateway_dns_location.tf b/gateway_dns_location.tf index 1991d95..c997f96 100644 --- a/gateway_dns_location.tf +++ b/gateway_dns_location.tf @@ -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 name = "Home Office Location" client_default = false @@ -36,4 +44,12 @@ resource "cloudflare_zero_trust_dns_location" "example_zero_trust_dns_location" networks = [{ network = "82.66.77.254/32" }] -} \ No newline at end of file +} + +# +resource "cloudflare_zero_trust_dns_location" "dns_location_vacation" { + account_id = local.cloudflare_account_id + name = "Vacation Location" + client_default = false + ecs_support = false +}