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

This commit is contained in:
2025-11-17 20:09:10 +01:00
parent fa5e218375
commit 788a247f6d

View File

@@ -58,6 +58,15 @@ resource "cloudflare_zero_trust_dns_location" "dns_location_home" {
network = "2001:85a3::/64" 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" 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" 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" 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" 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" 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" network = "2001:85a3::/64"
}] }]
} }
ipv4 = {
enabled = true
}
ipv6 = {
enabled = true
networks = [{
network = "2001:85a3::/64"
}]
}
} }
} }