We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2da2528 commit 80943edCopy full SHA for 80943ed
main.tf
@@ -2,10 +2,11 @@
2
# Security Group Resources
3
#
4
resource "aws_security_group" "default" {
5
- count = module.this.enabled && var.use_existing_security_groups == false ? 1 : 0
6
- vpc_id = var.vpc_id
7
- name = module.this.id
8
- tags = module.this.tags
+ count = module.this.enabled && var.use_existing_security_groups == false ? 1 : 0
+ description = "Security group for Elasticache Redis"
+ vpc_id = var.vpc_id
+ name = module.this.id
9
+ tags = module.this.tags
10
}
11
12
resource "aws_security_group_rule" "egress" {
0 commit comments