Topic 1 Question 111
A company uses a series of individual Amazon CloudFormation templates to deploy its multi-Region applications. These templates must be deployed in a specific order. The company is making more changes to the templates than previously expected and wants to deploy new templates more efficiently. Additionally, the data engineering team must be notified of all changes to the templates.
What should the company do to accomplish these goals?
Create an AWS Lambda function to deploy the CloudFormation templates in the required order. Use stack policies to alert the data engineering team.
Host the CloudFormation templates in Amazon S3. Use Amazon S3 events to directly trigger CloudFormation updates and Amazon SNS notifications.
Implement CloudFormation StackSets and use drift detection to trigger update alerts to the data engineering team.
Leverage CloudFormation nested stacks and stack sets for deployments. Use Amazon SNS to notify the data engineering team.
ユーザの投票
コメント(6)
- 正解だと思う選択肢: C👍 1Jeanphi722023/05/09
- 正解だと思う選択肢: D
The correct solution is D:
The solution works as follows:
AWS Config triggers the evaluation when any resource that matches the rule’s scope (currently set to “AWS::CloudFormation::Stack”) changes in configuration and at the frequency (“MaximumExecutionFrequency” parameter) that you specify at the time of this solution deployment. EventBridge receives the events from AWS Config, applies the EventBridge rule to match the compliance change event, and transforms the input (customize the text) as defined in the “InputTransformer” template. The chosen customer-managed KMS Key is then accessed to encrypt the notification. The encrypted notification is published to the target SNS topic. The endpoints subscribed to this topic start receiving the published messages.
👍 1Sazeka2023/05/10 - 正解だと思う選択肢: D
D is correct.
👍 1ParagSanyashiv2023/05/11
シャッフルモード