Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

r/aws_autoscaling_group: Add instance_refresh preferences #33310

Conversation

evan-cleary
Copy link
Contributor

Description

Adds the scale_in_protected_instances and standby_instances attributes to the aws_autoscaling_group instance refresh properties. These attributes allow for further control of the instance refresh bhevaiors in conditions where an instance may not normally refresh, or may result in the instance refresh failing.

One example use case is utilizing ecs capacity provider managed_termination_protection with scale_in_protected_instances set to Refresh to allow for ECS compute to be fully updated with a new AMI, current default behavior results in these protected instances not refreshing and the instance refresh failing.

Relations

Closes #29827

References

Refresh Preferences API Docs
AWS Release Blog Post

Output from Acceptance Testing

% make testacc TESTS=TestAccAutoScalingGroup_InstanceRefresh_.\* PKG=autoscaling
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/autoscaling/... -v -count 1 -parallel 20 -run='TestAccAutoScalingGroup_InstanceRefresh_.*'  -timeout 180m
=== RUN   TestAccAutoScalingGroup_InstanceRefresh_basic
=== PAUSE TestAccAutoScalingGroup_InstanceRefresh_basic
=== RUN   TestAccAutoScalingGroup_InstanceRefresh_start
=== PAUSE TestAccAutoScalingGroup_InstanceRefresh_start
=== RUN   TestAccAutoScalingGroup_InstanceRefresh_triggers
=== PAUSE TestAccAutoScalingGroup_InstanceRefresh_triggers
=== RUN   TestAccAutoScalingGroup_InstanceRefresh_autoRollback
=== PAUSE TestAccAutoScalingGroup_InstanceRefresh_autoRollback
=== CONT  TestAccAutoScalingGroup_InstanceRefresh_basic
=== CONT  TestAccAutoScalingGroup_InstanceRefresh_triggers
=== CONT  TestAccAutoScalingGroup_InstanceRefresh_start
=== CONT  TestAccAutoScalingGroup_InstanceRefresh_autoRollback
--- PASS: TestAccAutoScalingGroup_InstanceRefresh_triggers (149.36s)
--- PASS: TestAccAutoScalingGroup_InstanceRefresh_autoRollback (162.91s)
--- PASS: TestAccAutoScalingGroup_InstanceRefresh_start (168.93s)
--- PASS: TestAccAutoScalingGroup_InstanceRefresh_basic (260.64s)
PASS
ok      github.com/hashicorp/terraform-provider-aws/internal/service/autoscaling        262.982s

…ted_instances` attributes to instance_refresh preferences
@github-actions
Copy link

github-actions bot commented Sep 5, 2023

Community Note

Voting for Prioritization

  • Please vote on this pull request by adding a 👍 reaction to the original post to help the community and maintainers prioritize this pull request.
  • Please see our prioritization guide for information on how we prioritize.
  • Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request.

For Submitters

  • Review the contribution guide relating to the type of change you are making to ensure all of the necessary steps have been taken.
  • For new resources and data sources, use skaff to generate scaffolding with comments detailing common expectations.
  • Whether or not the branch has been rebased will not impact prioritization, but doing so is always a welcome surprise.

@github-actions github-actions bot added documentation Introduces or discusses updates to documentation. tests PRs: expanded test coverage. Issues: expanded coverage, enhancements to test infrastructure. service/autoscaling Issues and PRs that pertain to the autoscaling service. size/M Managed by automation to categorize the size of a PR. labels Sep 5, 2023
@terraform-aws-provider terraform-aws-provider bot added the needs-triage Waiting for first response or review from a maintainer. label Sep 5, 2023
@evan-cleary evan-cleary changed the title [WIP] r/aws_autoscaling_group: Add instance_refresh_preferences r/aws_autoscaling_group: Add instance_refresh_preferences Sep 5, 2023
@evan-cleary evan-cleary force-pushed the f-aws_autoscaling_group-instance_refresh-preferences branch 2 times, most recently from 2f05f36 to dfceb8c Compare September 5, 2023 16:48
@evan-cleary evan-cleary changed the title r/aws_autoscaling_group: Add instance_refresh_preferences r/aws_autoscaling_group: Add instance_refresh preferences Sep 5, 2023
@ewbankkit ewbankkit added enhancement Requests to existing resources that expand the functionality or scope. and removed needs-triage Waiting for first response or review from a maintainer. labels Sep 5, 2023
Copy link
Contributor

@ewbankkit ewbankkit left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM 🚀.

% make testacc TESTARGS='-run=TestAccAutoScalingGroup_InstanceRefresh_' PKG=autoscaling ACCTEST_PARALLELISM=2
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/autoscaling/... -v -count 1 -parallel 2  -run=TestAccAutoScalingGroup_InstanceRefresh_ -timeout 180m
=== RUN   TestAccAutoScalingGroup_InstanceRefresh_basic
=== PAUSE TestAccAutoScalingGroup_InstanceRefresh_basic
=== RUN   TestAccAutoScalingGroup_InstanceRefresh_start
=== PAUSE TestAccAutoScalingGroup_InstanceRefresh_start
=== RUN   TestAccAutoScalingGroup_InstanceRefresh_triggers
=== PAUSE TestAccAutoScalingGroup_InstanceRefresh_triggers
=== RUN   TestAccAutoScalingGroup_InstanceRefresh_autoRollback
=== PAUSE TestAccAutoScalingGroup_InstanceRefresh_autoRollback
=== CONT  TestAccAutoScalingGroup_InstanceRefresh_basic
=== CONT  TestAccAutoScalingGroup_InstanceRefresh_triggers
--- PASS: TestAccAutoScalingGroup_InstanceRefresh_triggers (197.22s)
=== CONT  TestAccAutoScalingGroup_InstanceRefresh_start
--- PASS: TestAccAutoScalingGroup_InstanceRefresh_basic (417.91s)
=== CONT  TestAccAutoScalingGroup_InstanceRefresh_autoRollback
--- PASS: TestAccAutoScalingGroup_InstanceRefresh_autoRollback (193.32s)
--- PASS: TestAccAutoScalingGroup_InstanceRefresh_start (468.28s)
PASS
ok  	github.com/hashicorp/terraform-provider-aws/internal/service/autoscaling	671.692s

@ewbankkit
Copy link
Contributor

@evan-cleary Thanks for the contribution 🎉 👏.

@ewbankkit ewbankkit merged commit 73f90e7 into hashicorp:main Sep 5, 2023
41 checks passed
@github-actions github-actions bot added this to the v5.16.0 milestone Sep 5, 2023
@evan-cleary evan-cleary deleted the f-aws_autoscaling_group-instance_refresh-preferences branch September 5, 2023 20:16
@evan-cleary
Copy link
Contributor Author

@ewbankkit Wasn't expecting such a quick merge! Cheers! 🎉

@github-actions
Copy link

github-actions bot commented Sep 8, 2023

This functionality has been released in v5.16.0 of the Terraform AWS Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading.

For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you!

@github-actions
Copy link

github-actions bot commented Oct 8, 2023

I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.
If you have found a problem that seems related to this change, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Oct 8, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
documentation Introduces or discusses updates to documentation. enhancement Requests to existing resources that expand the functionality or scope. service/autoscaling Issues and PRs that pertain to the autoscaling service. size/M Managed by automation to categorize the size of a PR. tests PRs: expanded test coverage. Issues: expanded coverage, enhancements to test infrastructure.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Enhancement]: Add ScaleInProtectedInstances on InstanceRefresh preferences
2 participants