mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-01-16 08:37:18 +01:00
fix: Ignore changes to bootstrap_cluster_creator_admin_permissions which is disabled by default (#3042)
* Ignore changes to bootstrap_cluster_creator_admin_permissions to allow upgrading module and importing existing clusters * Update main.tf Co-authored-by: Igor Brites <igor@brites.dev> * fix attribute reffernce --------- Co-authored-by: Igor Brites <igor@brites.dev>
This commit is contained in:
committed by
GitHub
parent
15a3248f59
commit
c65d308503
6
main.tf
6
main.tf
@@ -102,6 +102,12 @@ resource "aws_eks_cluster" "this" {
|
|||||||
aws_cloudwatch_log_group.this,
|
aws_cloudwatch_log_group.this,
|
||||||
aws_iam_policy.cni_ipv6_policy,
|
aws_iam_policy.cni_ipv6_policy,
|
||||||
]
|
]
|
||||||
|
|
||||||
|
lifecycle {
|
||||||
|
ignore_changes = [
|
||||||
|
access_config["bootstrap_cluster_creator_admin_permissions"]
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
resource "aws_ec2_tag" "cluster_primary_security_group" {
|
resource "aws_ec2_tag" "cluster_primary_security_group" {
|
||||||
|
|||||||
Reference in New Issue
Block a user