Topic 1 Question 251
A company uses AWS CloudFormation templates to deploy cloud infrastructure. An analysis of all the company's templates shows that the company has declared the same components in multiple templates. A SysOps administrator needs to create dedicated templates that have their own parameters and conditions for these common components.
Which solution will meet this requirement?
Develop a CloudFormation change set.
Develop CloudFormation macros.
Develop CloudFormation nested stacks.
Develop CloudFormation stack sets.
ユーザの投票
コメント(3)
- 正解だと思う選択肢: C
As your infrastructure grows, common patterns can emerge in which you declare the same components in multiple templates. You can separate out these common components and create dedicated templates for them. Then use the resource in your template to reference other templates, creating nested stacks.
👍 4defmania002023/02/19 - 正解だと思う選択肢: C
The correct answer is C. Develop CloudFormation nested stacks.
CloudFormation nested stacks allow you to create a parent stack that references multiple child stacks. Each child stack can have its own parameters and conditions, and the parent stack can be used to create or update all the resources across all the child stacks at once.
By using CloudFormation nested stacks, the SysOps administrator can create dedicated templates for the common components, each with their own parameters and conditions. The common components can be declared once in a shared template, which can then be referenced by the child stacks.
👍 2Vivec2023/03/09 - 正解だと思う選択肢: C
Nested stack declaration: AWS::CloudFormation::Stack -> TemplateURL: https://s3.amazonaws.com/cloudformation-templates-us-east-1/template.yml StackSets are used with AWS Organizations to share stacks between different accounts.
👍 1Gomer2023/04/26
シャッフルモード