ExamQuestions.com

Register
Login
AWS Certified DevOps Engineer Professional Exam Questions

Amazon

AWS Certified DevOps Engineer Professional

453 / 500

Question 453:

Your team plans to launch two CloudFormation stacks to create resources for a web application. These two stacks need to be managed separately. The first stack is a network stack that includes network resources such as subnets and security groups. The second stack is an application stack used to launch an Auto Scaling group resource. The ASG needs to refer to the resources created by the network stack. How would you configure the application stack to import the network resources properly?

Answer options:

A.Export the resources in the resource properties of the network stack. In the application stack, import the resources with the intrinsic function Fn::GetAttr.
B.Export the resources in the outputs of the network stack. In the application stack, import the resources with the intrinsic function Fn::Sub.
C.Export the resources in the outputs of the network stack. In the application stack, import the resources with the intrinsic function Fn::ImportValue.
D.In the network stack, export the resources through the intrinsic function Fn::ExportValue. In the application stack, import the resources with the intrinsic function Fn::FindInMap.