mirror of
https://github.com/ghndrx/GSP662.git
synced 2026-02-10 15:04:57 +00:00
commit new all
This commit is contained in:
21
modules/firewall/variables.tf
Normal file
21
modules/firewall/variables.tf
Normal 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"]
|
||||
}
|
||||
Reference in New Issue
Block a user