Skip to content

Commit

Permalink
fix: Avoid re-naming the primary security group through a Name tag …
Browse files Browse the repository at this point in the history
…and leave to the EKS service to manage (#2010)
  • Loading branch information
bryantbiggs authored Apr 12, 2022
1 parent 69a815c commit b5ae5da
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
7 changes: 7 additions & 0 deletions examples/eks_managed_node_group/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,13 @@ module "eks" {
resources = ["secrets"]
}]

cluster_tags = {
# This should not affect the name of the cluster primary security group
# Ref: https:/terraform-aws-modules/terraform-aws-eks/pull/2006
# Ref: https:/terraform-aws-modules/terraform-aws-eks/pull/2008
Name = local.name
}

vpc_id = module.vpc.vpc_id
subnet_ids = module.vpc.private_subnets

Expand Down
5 changes: 4 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,10 @@ resource "aws_eks_cluster" "this" {
}

resource "aws_ec2_tag" "cluster_primary_security_group" {
for_each = { for k, v in merge(var.tags, var.cluster_tags) : k => v if local.create }
# This should not affect the name of the cluster primary security group
# Ref: https:/terraform-aws-modules/terraform-aws-eks/pull/2006
# Ref: https:/terraform-aws-modules/terraform-aws-eks/pull/2008
for_each = { for k, v in merge(var.tags, var.cluster_tags) : k => v if local.create && k != "Name" }

resource_id = aws_eks_cluster.this[0].vpc_config[0].cluster_security_group_id
key = each.key
Expand Down

0 comments on commit b5ae5da

Please sign in to comment.