Paying tributes to the linting gods

This commit is contained in:
Simone Ruffilli 2021-12-07 13:29:01 +01:00
parent b1ff592990
commit 5c8557a29d
1 changed files with 6 additions and 6 deletions

View File

@ -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