ExamQuestions.com

Register
Login
AWS Certified DevOps Engineer Professional Exam Questions

Amazon

AWS Certified DevOps Engineer Professional

463 / 500

Question 463:

Your team needs to create CloudFormation stacks for multiple web applications. There are some common AWS resources that are used by most applications such as security groups. These resources are not frequently modified after being created. You want to manage these common AWS resources separately and other application stacks can easily reuse them when needed. How would you achieve this requirement?

Answer options:

A.Use a CloudFormation stack to create these resources and export the output values. Other CloudFormation stacks can import the resources through the Fn::ImportValue function.
B.Use a CloudFormation stack to include these commonly used resources and export the output values. Other CloudFormation stacks can import the resources through the Fn::GetAttr function.
C.Launch a CloudFormation stack to include the common resources and the stack is nested within other application CloudFormation stacks using the AWS::CloudFormation::Stack resource.
D.Use a CloudFormation stack to manage the common resources. In the AWS Console, choose “Import resources into stack” for other CloudFormation stacks to reuse its AWS resources.