We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6197b1d + 6600ed9 commit 090daf1Copy full SHA for 090daf1
security_groups.tf
@@ -23,6 +23,6 @@ resource "aws_security_group_rule" "redis_networks_ingress" {
23
from_port = "${var.redis_port}"
24
to_port = "${var.redis_port}"
25
protocol = "tcp"
26
- cidr_blocks = "${var.allowed_cidr}"
+ cidr_blocks = ["${var.allowed_cidr}"]
27
security_group_id = "${aws_security_group.redis_security_group.id}"
28
}
0 commit comments