Topic 1 Question 226
Given the following AWS CloudFormation template:
What is the MOST efficient way to reference the new Amazon S3 bucket from another AWS CloudFormation template?
Add an Export declaration to the Outputs section of the original template and use ImportValue in other templates.
Add Exported: true to the Content.Bucket in the original template and use ImportResource in other templates.
Create a custom AWS CloudFormation resource that gets the bucket name from the ContentBucket resource of the first stack.
Use Fn::Include to include the existing template in other templates and use the ContentBucket resource directly.
ユーザの投票
コメント(2)
- 正解だと思う選択肢: A
A. Add an Export declaration to the Outputs section of the original template and use ImportValue in other templates.
👍 2bhanupriya072023/11/17 A. Add an Export declaration to the Outputs section of the original template and use ImportValue in other templates.
👍 1Claire_KMT2023/10/28
シャッフルモード