Produce less state diff due to IPv6 addr formatting

This commit is contained in:
Andrew Dryga
2023-09-14 01:03:50 -06:00
parent db7df665c4
commit 6f2818f7c7
2 changed files with 3 additions and 3 deletions

View File

@@ -622,7 +622,7 @@ resource "google_compute_firewall" "egress-ipv6" {
direction = "EGRESS"
target_tags = ["app-${local.application_name}"]
destination_ranges = ["::/0"]
destination_ranges = ["::0/0"]
allow {
protocol = "all"

View File

@@ -448,7 +448,7 @@ resource "google_compute_firewall" "ingress-ipv6" {
direction = "INGRESS"
target_tags = ["app-${local.application_name}"]
source_ranges = ["::/0"]
source_ranges = ["::0/0"]
allow {
protocol = "udp"
@@ -479,7 +479,7 @@ resource "google_compute_firewall" "egress-ipv6" {
direction = "EGRESS"
target_tags = ["app-${local.application_name}"]
destination_ranges = ["::/0"]
destination_ranges = ["::0/0"]
allow {
protocol = "udp"