-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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: Possible fix for issue #2006 #2008
fix: Possible fix for issue #2006 #2008
Conversation
hi @pcheung-sfdc - I think there was a little misunderstanding. What I was suggesting in the issue was to use module "eks" {
name = var.cluster_name
tags = {
Name = "foo"
}
} You should be able to resolve your issue with: module "eks" {
name = var.cluster_name
tags = {
Name = "foo"
}
cluster_tags = {
Name = var.cluster_name
}
} |
@bryantbiggs but the |
The primary security group is created by the EKS service - that service sets the name tag which appears to be the same name as the cluster name. So what I understood your issue to be was that you were changing the name tag in |
yes, correct, except that it's not the same name as the cluster name. It contains the cluster-name and some prefix automatically generated (eks-cluster-sg), as well as a suffix (maybe a timestamp). So if we do what you propose, it would make a generic tag |
This issue has been resolved in version 18.20.2 🎉 |
I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems related to this change, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
Description
see issue #2006
Motivation and Context
see issue #2006
Breaking Changes
no breaking changes
How Has This Been Tested?
examples/*
projects