File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 2
2
3
3
BACKWARDS INCOMPATIBILITIES / NOTES:
4
4
5
+
5
6
* IMDSv2 support is now on by default, this can be changed via the new
6
7
` cluster_instance_metadata_options ` variable which mirrors
7
8
aws_launch_template's [ metadata_options] ( https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/launch_template#metadata-options )
9
+ * The ` cluster_desired_capacity ` is now ignored after the first ` apply ` of the
10
+ module since, in the case of autoscaling or manual scaling, the value may have
11
+ changed between ` apply ` s.
8
12
9
13
## 6.0.0 (February 22th 2023)
10
14
Original file line number Diff line number Diff line change @@ -107,5 +107,8 @@ resource "aws_autoscaling_group" "cluster" {
107
107
108
108
lifecycle {
109
109
create_before_destroy = true
110
+ ignore_changes = [
111
+ desired_capacity
112
+ ]
110
113
}
111
114
}
You can’t perform that action at this time.
0 commit comments