Skip to content

Commit

Permalink
Merge pull request #79 from rancherfederal/fix-sg-again
Browse files Browse the repository at this point in the history
Bad value in concat
  • Loading branch information
adamacosta committed Apr 13, 2023
2 parents f911022 + 514666b commit e60ad00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/nodepool/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ resource "aws_launch_template" "this" {
network_interfaces {
associate_public_ip_address = var.associate_public_ip_address
delete_on_termination = true
security_groups = concat(var.vpc_security_group_ids, [aws_security_group.this])
security_groups = concat(var.vpc_security_group_ids, [aws_security_group.this.id])
}

block_device_mappings {
Expand Down

0 comments on commit e60ad00

Please sign in to comment.