From 6f2818f7c7175dad8f2fe09e09651576b6477355 Mon Sep 17 00:00:00 2001 From: Andrew Dryga Date: Thu, 14 Sep 2023 01:03:50 -0600 Subject: [PATCH] Produce less state diff due to IPv6 addr formatting --- terraform/modules/elixir-app/main.tf | 2 +- terraform/modules/relay-app/main.tf | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/terraform/modules/elixir-app/main.tf b/terraform/modules/elixir-app/main.tf index 4b42b9a7a..47e7d5c9f 100644 --- a/terraform/modules/elixir-app/main.tf +++ b/terraform/modules/elixir-app/main.tf @@ -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" diff --git a/terraform/modules/relay-app/main.tf b/terraform/modules/relay-app/main.tf index a451160ba..e2d9bb460 100644 --- a/terraform/modules/relay-app/main.tf +++ b/terraform/modules/relay-app/main.tf @@ -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"