From 788a247f6dfff46080c233c9416b1f7ca6c0b654 Mon Sep 17 00:00:00 2001 From: Hubert Cornet Date: Mon, 17 Nov 2025 20:09:10 +0100 Subject: [PATCH] Update gateway_dns_location.tf --- gateway_dns_location.tf | 63 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) diff --git a/gateway_dns_location.tf b/gateway_dns_location.tf index 34a604d..f3d7aad 100644 --- a/gateway_dns_location.tf +++ b/gateway_dns_location.tf @@ -58,6 +58,15 @@ resource "cloudflare_zero_trust_dns_location" "dns_location_home" { network = "2001:85a3::/64" }] } + ipv4 = { + enabled = true + } + ipv6 = { + enabled = true + networks = [{ + network = "2001:85a3::/64" + }] + } } } @@ -81,6 +90,15 @@ resource "cloudflare_zero_trust_dns_location" "dns_location_vacation" { network = "2001:85a3::/64" }] } + ipv4 = { + enabled = true + } + ipv6 = { + enabled = true + networks = [{ + network = "2001:85a3::/64" + }] + } } } @@ -104,6 +122,15 @@ resource "cloudflare_zero_trust_dns_location" "dns_location_datacenter" { network = "2001:85a3::/64" }] } + ipv4 = { + enabled = true + } + ipv6 = { + enabled = true + networks = [{ + network = "2001:85a3::/64" + }] + } } } @@ -127,6 +154,15 @@ resource "cloudflare_zero_trust_dns_location" "dns_location_GCP" { network = "2001:85a3::/64" }] } + ipv4 = { + enabled = true + } + ipv6 = { + enabled = true + networks = [{ + network = "2001:85a3::/64" + }] + } } } @@ -150,6 +186,15 @@ resource "cloudflare_zero_trust_dns_location" "dns_location_azure" { network = "2001:85a3::/64" }] } + ipv4 = { + enabled = true + } + ipv6 = { + enabled = true + networks = [{ + network = "2001:85a3::/64" + }] + } } } @@ -173,6 +218,15 @@ resource "cloudflare_zero_trust_dns_location" "dns_location_ovh" { network = "2001:85a3::/64" }] } + ipv4 = { + enabled = true + } + ipv6 = { + enabled = true + networks = [{ + network = "2001:85a3::/64" + }] + } } } @@ -196,5 +250,14 @@ resource "cloudflare_zero_trust_dns_location" "dns_location_aws" { network = "2001:85a3::/64" }] } + ipv4 = { + enabled = true + } + ipv6 = { + enabled = true + networks = [{ + network = "2001:85a3::/64" + }] + } } } \ No newline at end of file