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

fix: Correct conditional map for cluster security group additional rules (#1738)

This commit is contained in:
Bryant Biggs
2022-01-06 06:27:04 -05:00
committed by GitHub
parent d71ef01c37
commit a2c7caac9f
4 changed files with 14 additions and 3 deletions
+1 -1
View File
@@ -153,7 +153,7 @@ variable "cluster_security_group_description" {
variable "cluster_security_group_additional_rules" {
description = "List of additional security group rules to add to the cluster security group created"
type = map(any)
type = any
default = {}
}