We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ee36d0 commit b3a90aaCopy full SHA for b3a90aa
CHANGELOG.md
@@ -12,6 +12,7 @@ project adheres to [Semantic Versioning](http://semver.org/).
12
- Write your awesome change here (by @you)
13
- Fix index reference on destroy for output `oidc_provider_arn` (@stevie-)
14
- Add support for restricting access to the public API endpoint (@sidprak)
15
+- Add an `ignore_lifecycle` rule to prevent Terraform from scaling down ASG behind AWS EKS Managed Node Group (by @davidalger)
16
17
# History
18
modules/node_groups/node_groups.tf
@@ -45,5 +45,6 @@ resource "aws_eks_node_group" "workers" {
45
46
lifecycle {
47
create_before_destroy = true
48
+ ignore_changes = [scaling_config.0.desired_size]
49
}
50
0 commit comments