diff --git a/modules/net-vpc-firewall/variables.tf b/modules/net-vpc-firewall/variables.tf index 7a392a6d..7682a3f3 100644 --- a/modules/net-vpc-firewall/variables.tf +++ b/modules/net-vpc-firewall/variables.tf @@ -20,6 +20,12 @@ variable "admin_ranges" { default = [] } +variable "cidr_template_file" { + description = "Path for optional file containing name->cidr_list map to be used by the rules factory." + type = string + default = null +} + variable "custom_rules" { description = "List of custom rule definitions (refer to variables file for syntax)." type = map(object({ @@ -39,12 +45,6 @@ variable "custom_rules" { default = {} } -variable "cidr_template_file" { - description = "Path for optional file containing name->cidr_list map to be used by the rules factory." - type = string - default = null -} - variable "data_folder" { description = "Path for optional folder containing firewall rules defined as YaML objects used by the rules factory." type = string