ecs-task-deploy
ecs-task-deploy copied to clipboard
Update an AWS ECS task definition with Docker image and trigger a blue/green deployment
In order to use secrets in task definitions you need to specify the execution role arn. https://docs.aws.amazon.com/AmazonECS/latest/developerguide/specifying-sensitive-data.html This PR preserves `executionRoleArn` which previously did not work. fixes #11
Bumps [debug](https://github.com/debug-js/debug) from 2.6.3 to 2.6.9. Release notes Sourced from debug's releases. 2.6.9 Patches Remove ReDoS regexp in %o formatter: #504 Credits Huge thanks to @zhuangya for their help! release...
Bumps [aws-sdk](https://github.com/aws/aws-sdk-js) from 2.28.0 to 2.814.0. Changelog Sourced from aws-sdk's changelog. 2.814.0 bugfix: Credentials: SDK will throw if shared ini file's profile name can be resolved to proto feature: EC2:...
Bumps [path-parse](https://github.com/jbgutierrez/path-parse) from 1.0.5 to 1.0.7. Commits See full diff in compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...
ECS has a feature where it is possible to populate env variables from the ssm parameter store. The task definition the looks kinda like this. https://docs.aws.amazon.com/AmazonECS/latest/developerguide/specifying-sensitive-data.html ```json { "containerDefinitions": [{...
Currently when you launch an update, if the new task fails to come up, or is brought down due to a failing health check, you can be in a situation...