Skip to content

Commit

Permalink
fix : tflint error for output.tf anf variable.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
vaibhavcloud committed Sep 17, 2024
1 parent 5298cc2 commit 091761b
Showing 1 changed file with 11 additions and 33 deletions.
44 changes: 11 additions & 33 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -130,48 +130,26 @@ variable "additional_public_ips" {
}

variable "application_rule_collection" {
description = "One or more application_rule_collection blocks."
type = list(object({
name = string
rules = list(object({
name = string
action = string
protocol = string
ports = list(string)
}))
}))
default = []
description = "One or more application_rule_collection blocks as defined below."
type = list(object({ ... }))
default = []
}


variable "network_rule_collection" {
description = "One or more network_rule_collection blocks."
type = list(object({
name = string
rules = list(object({
name = string
action = string
protocol = string
ports = list(string)
}))
}))
default = []
description = "One or more network_rule_collection blocks as defined below."
type = list(object({ ... }))
default = []
}


variable "nat_rule_collection" {
description = "One or more nat_rule_collection blocks."
type = list(object({
name = string
rules = list(object({
name = string
action = string
protocol = string
ports = list(string)
}))
}))
default = []
description = "One or more nat_rule_collection blocks as defined below."
type = list(object({ ... }))
default = []
}


variable "public_ip_names" {
type = list(string)
default = []
Expand Down

0 comments on commit 091761b

Please sign in to comment.