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 <wpcarro@gmail.com>
Autosubmit: wpcarro <wpcarro@gmail.com>
This commit is contained in:
William Carroll 2021-12-30 10:44:08 -04:00 committed by clbot
parent ff0552c758
commit d24eef0735

View file

@ -123,7 +123,7 @@ in {
];
}
];
source_tags = ["${name}-firewall"];
source_ranges = ["0.0.0.0/0"];
};
resource.google_compute_disk."${name}" = {