mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-04-18 14:59:38 +02:00
Ignore changes to desired_size of node_groups (#691)
* Ignore changes to desired_size of node_groups Resolves #681 * Update CHANGELOG.md
This commit is contained in:
committed by
Max Williams
parent
0ee36d0aee
commit
b3a90aac80
@@ -12,6 +12,7 @@ project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
- Write your awesome change here (by @you)
|
- Write your awesome change here (by @you)
|
||||||
- Fix index reference on destroy for output `oidc_provider_arn` (@stevie-)
|
- Fix index reference on destroy for output `oidc_provider_arn` (@stevie-)
|
||||||
- Add support for restricting access to the public API endpoint (@sidprak)
|
- Add support for restricting access to the public API endpoint (@sidprak)
|
||||||
|
- Add an `ignore_lifecycle` rule to prevent Terraform from scaling down ASG behind AWS EKS Managed Node Group (by @davidalger)
|
||||||
|
|
||||||
# History
|
# History
|
||||||
|
|
||||||
|
|||||||
@@ -45,5 +45,6 @@ resource "aws_eks_node_group" "workers" {
|
|||||||
|
|
||||||
lifecycle {
|
lifecycle {
|
||||||
create_before_destroy = true
|
create_before_destroy = true
|
||||||
|
ignore_changes = [scaling_config.0.desired_size]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user