Skip to content

Commit 3f67a55

Browse files
Fix: security_group_name input type to list
1 parent debc7e6 commit 3f67a55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module "aws_security_group" {
1010
enabled = local.create_security_group
1111

1212
allow_all_egress = var.allow_all_egress
13-
security_group_name = coalesce(var.security_group_name, "${module.this.id}-elasticache-redis")
13+
security_group_name = [coalesce(var.security_group_name, "${module.this.id}-elasticache-redis")]
1414
rules_map = {
1515
extra = var.additional_security_group_rules
1616
}

0 commit comments

Comments
 (0)