Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Don't tag self managed node security group with kubernetes.io/cluster tag #1774

Merged
merged 8 commits into from
Feb 2, 2022
3 changes: 1 addition & 2 deletions modules/self-managed-node-group/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -460,8 +460,7 @@ resource "aws_security_group" "this" {
tags = merge(
var.tags,
{
"Name" = local.security_group_name
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please add back in the "Name" tag, then we should be good to go with this one

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should be all set now.

"kubernetes.io/cluster/${var.cluster_name}" = "owned"
"Name" = local.security_group_name
},
var.security_group_tags
)
Expand Down