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.
2 parents 99bca7a + ae503f0 commit 805066dCopy full SHA for 805066d
CHANGELOG.md
@@ -1,3 +1,11 @@
1
+## Unreleased
2
+
3
+BACKWARDS INCOMPATIBILITIES / NOTES:
4
5
+* The `cluster_desired_capacity` is now ignored after the first `apply` of the
6
+ module since, in the case of autoscaling or manual scaling, the value may have
7
+ changed between `apply`s.
8
9
## 6.0.0 (February 22th 2023)
10
11
BACKWARDS INCOMPATIBILITIES / NOTES:
asg.tf
@@ -110,5 +110,8 @@ resource "aws_autoscaling_group" "cluster" {
110
111
lifecycle {
112
create_before_destroy = true
113
+ ignore_changes = [
114
+ desired_capacity
115
+ ]
116
}
117
0 commit comments