feat: Add sigint_rollback argument support to ECS service #347
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Add support for the
sigint_rollback
parameter to the ECS service resource. This parameter enables graceful termination of ECS deployments using SIGINT signals, allowing users to safely cancel in-progress deployments with automatic rollback to the previous stable state.The implementation maintains backward compatibility by setting the default value to
null
and only applies when the required conditions are met (ECS deployment controller andwait_for_steady_state = true
).hashicorp/terraform-provider-aws#43986
Motivation and Context
This feature was recently added to AWS ECS and is now available in the Terraform AWS provider, making it necessary to expose it in this module for users who want to leverage this capability.
Breaking Changes
N/A
How Has This Been Tested?
examples/*
to demonstrate and validate my change(s)examples/*
projectspre-commit run -a
on my pull request