We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a17f65 commit 5063dc1Copy full SHA for 5063dc1
main.tf
@@ -88,6 +88,10 @@ resource "aws_eks_cluster" "this" {
88
aws_cloudwatch_log_group.this,
89
aws_iam_policy.cni_ipv6_policy,
90
]
91
+
92
+ lifecycle {
93
+ prevent_destroy = true
94
+ }
95
}
96
97
resource "aws_ec2_tag" "cluster_primary_security_group" {
modules/eks-managed-node-group/main.tf
@@ -382,6 +382,7 @@ resource "aws_eks_node_group" "this" {
382
ignore_changes = [
383
scaling_config[0].desired_size,
384
385
386
387
388
tags = merge(
0 commit comments