Topic 1 Question 367
A developer is creating AWS CloudFormation templates to manage an application's deployment in Amazon Elastic Container Service (Amazon ECS) through AWS CodeDeploy. The developer wants to automatically deploy new versions of the application to a percentage of users before the new version becomes available for all users.
How should the developer manage the deployment of the new version?
Modify the CloudFormation template to include a Transform section and the AWS::CodeDeploy::BlueGreen hook.
Deploy the new version in a new CloudFormation stack. After testing is complete, update the application's DNS records for the new stack.
Run CloudFormation stack updates on the application stack to deploy new application versions when they are available.
Create a nested stack for the new version. Include a Transform section and the AWS::CodeDeploy::BlueGreen hook.
ユーザの投票
コメント(2)
- 正解だと思う選択肢: A
option A leverages the AWS::CodeDeploy::BlueGreen transform hook in the CloudFormation template. This hook allows the developer to specify blue/green deployment strategies directly in the CloudFormation template. It facilitates deploying new versions to a subset of users (canary or linear deployments) before fully rolling out to all users. This approach is designed for seamless and automated deployments using AWS CodeDeploy and ECS.
👍 3rdiaz2024/07/11 - 正解だと 思う選択肢: A
To perform CodeDeploy blue/green deployments on ECS using CloudFormation, you include the following information in your stack template:
- A Hooks section that describes a AWS::CodeDeploy::BlueGreen hook.
- A Transform section that specifies the AWS::CodeDeployBlueGreen transform.
👍 1preachr2024/10/05
シャッフルモード