use "all" for admin firewall rule in net-vpc-firewall module

This commit is contained in:
Ludovico Magnocavallo 2020-06-05 21:24:28 +02:00 committed by GitHub
parent 4a40497ce6
commit 474fd7364f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 3 deletions

View File

@ -34,9 +34,7 @@ resource "google_compute_firewall" "allow-admins" {
network = var.network network = var.network
project = var.project_id project = var.project_id
source_ranges = var.admin_ranges source_ranges = var.admin_ranges
allow { protocol = "icmp" } allow { protocol = "all" }
allow { protocol = "tcp" }
allow { protocol = "udp" }
} }
############################################################################### ###############################################################################