1
0
mirror of https://github.com/terraform-aws-modules/terraform-aws-eks.git synced 2025-09-09 19:32:58 +08:00

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
+1 -1
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 = {}
}