Skip to content

Commit

Permalink
goruhas changes recommited
Browse files Browse the repository at this point in the history
  • Loading branch information
samcrudge committed Jul 14, 2023
1 parent 54546aa commit 1ce0b49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ resource "aws_elastic_beanstalk_environment" "default" {
setting {
namespace = "aws:autoscaling:launchconfiguration"
name = "SecurityGroups"
value = join(",", compact(sort(concat([module.aws_security_group.id == null ? "" : module.aws_security_group.id], var.associated_security_group_ids))))
value = join(",", sort(compact(concat([module.aws_security_group.id], var.associated_security_group_ids))))
resource = ""
}

Expand Down

0 comments on commit 1ce0b49

Please sign in to comment.