Skip to content

Commit

Permalink
Merge pull request #78 from rancherfederal/fix-nodepool-sg
Browse files Browse the repository at this point in the history
Add back agent sg to agent asg
  • Loading branch information
adamacosta committed Apr 13, 2023
2 parents a5e7d88 + a90f1c7 commit f911022
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 = var.vpc_security_group_ids
security_groups = concat(var.vpc_security_group_ids, [aws_security_group.this])
}

block_device_mappings {
Expand Down

0 comments on commit f911022

Please sign in to comment.