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:
parent
ff0552c758
commit
d24eef0735
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ in {
|
|||
];
|
||||
}
|
||||
];
|
||||
source_tags = ["${name}-firewall"];
|
||||
source_ranges = ["0.0.0.0/0"];
|
||||
};
|
||||
|
||||
resource.google_compute_disk."${name}" = {
|
||||
|
|
Loading…
Reference in a new issue