mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-18 23:43:49 +01:00
fix: Avoid re-naming the primary security group through a Name tag and leave to the EKS service to manage (#2010)
This commit is contained in:
@@ -67,6 +67,13 @@ module "eks" {
|
||||
resources = ["secrets"]
|
||||
}]
|
||||
|
||||
cluster_tags = {
|
||||
# This should not affect the name of the cluster primary security group
|
||||
# Ref: https://github.com/terraform-aws-modules/terraform-aws-eks/pull/2006
|
||||
# Ref: https://github.com/terraform-aws-modules/terraform-aws-eks/pull/2008
|
||||
Name = local.name
|
||||
}
|
||||
|
||||
vpc_id = module.vpc.vpc_id
|
||||
subnet_ids = module.vpc.private_subnets
|
||||
|
||||
|
||||
Reference in New Issue
Block a user