fix: Change variable "node_security_group_additional_rules" from type map(any) to any (#1747)

This commit is contained in:
Pedro Magalhães
2022-01-06 20:10:10 +00:00
committed by GitHub
parent 3d151b2c85
commit 89218279d4
2 changed files with 2 additions and 2 deletions

View File

@@ -199,7 +199,7 @@ variable "node_security_group_description" {
variable "node_security_group_additional_rules" {
description = "List of additional security group rules to add to the node security group created"
type = map(any)
type = any
default = {}
}