Created
January 19, 2021 17:25
-
-
Save PaulDuvall/53ef51db2669b1471c3d333f42c53ed7 to your computer and use it in GitHub Desktop.
reinvent-2020-blog-ecs-circuit-breaker.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
service: | |
Type: AWS::ECS::Service | |
Properties: | |
Cluster: !Ref cluster | |
DeploymentConfiguration: | |
DeploymentCircuitBreaker: | |
Enable: true | |
Rollback: true | |
MaximumPercent: 200 | |
MinimumHealthyPercent: 100 | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment