From d24eef0735dfcec37c516cb4a138172aba2a7497 Mon Sep 17 00:00:00 2001 From: William Carroll Date: Thu, 30 Dec 2021 10:44:08 -0400 Subject: fix(wpcarro/terraform): Drop source_tags (prefer source_ranges) source_tags means: > the firewall will apply only to traffic with source IP that belongs to a tag > listed in source tags. This mechanism exists (presumably) for local networking between instances that I manage. For ingress traffic, I'd like to open these ports to the wider internet. Change-Id: If0963c853f10f3c205581cce100671714a5f6a3a Reviewed-on: https://cl.tvl.fyi/c/depot/+/4750 Tested-by: BuildkiteCI Reviewed-by: wpcarro Autosubmit: wpcarro --- users/wpcarro/terraform/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'users/wpcarro/terraform/default.nix') diff --git a/users/wpcarro/terraform/default.nix b/users/wpcarro/terraform/default.nix index b3c16144a209..be35785a54d0 100644 --- a/users/wpcarro/terraform/default.nix +++ b/users/wpcarro/terraform/default.nix @@ -123,7 +123,7 @@ in { ]; } ]; - source_tags = ["${name}-firewall"]; + source_ranges = ["0.0.0.0/0"]; }; resource.google_compute_disk."${name}" = { -- cgit 1.4.1