commit new all

This commit is contained in:
gregory hendrickson
2023-03-15 11:40:32 -07:00
commit e9964c2141
14 changed files with 441 additions and 0 deletions

11
modules/firewall/main.tf Normal file
View File

@@ -0,0 +1,11 @@
resource "google_compute_firewall" "default" {
name = var.firewall_name
network = var.network_name
allow {
protocol = "tcp"
ports = var.allowed_ports
}
source_ranges = var.source_ranges
}