Skip to content

Commit ce34e26

Browse files
relubryantbiggs
andauthored
fix: Set correct security group description (#527)
* fix: Set correct security group description * Update main.tf --------- Co-authored-by: Bryant Biggs <[email protected]>
1 parent c4e8f1b commit ce34e26

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
@@ -382,7 +382,7 @@ resource "aws_security_group" "this" {
382382
name = var.security_group_use_name_prefix ? null : local.security_group_name
383383
name_prefix = var.security_group_use_name_prefix ? "${local.security_group_name}-" : null
384384
vpc_id = var.vpc_id
385-
description = coalesce(var.security_group_description, "Control traffic to/from RDS Aurora ${local.create_security_group}")
385+
description = coalesce(var.security_group_description, "Control traffic to/from RDS Aurora ${local.security_group_name}")
386386

387387
tags = merge(
388388
var.tags,

0 commit comments

Comments
 (0)