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

View File

@@ -0,0 +1,21 @@
variable "firewall_name" {
description = "The name of the firewall"
type = string
}
variable "network_name" {
description = "The name of the network to apply the firewall rule to"
type = string
}
variable "allowed_ports" {
description = "The list of ports that are allowed by the firewall"
type = list(number)
default = [80, 443]
}
variable "source_ranges" {
description = "The list of source IP ranges that are allowed by the firewall"
type = list(string)
default = ["0.0.0.0/0"]
}