Skip to content

Commit

Permalink
fix(eks): fix node group name tag (#283)
Browse files Browse the repository at this point in the history
  • Loading branch information
Young-ook authored May 28, 2023
1 parent 76fd3e7 commit 9038979
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 @@ -253,7 +253,7 @@ resource "aws_autoscaling_group" "ng" {

dynamic "tag" {
for_each = merge(
{ "eks:nodegroup-name" = join("-", [aws_eks_cluster.cp.name, each.key]) },
{ "eks:nodegroup-name" = join("-", [each.key]) },
local.eks-tag,
)
content {
Expand Down

0 comments on commit 9038979

Please sign in to comment.