ExamQuestions.com

Register
Login
AWS Certified DevOps Engineer Professional Exam Questions

Amazon

AWS Certified DevOps Engineer Professional

64 / 500

Question 64:

Your application uses CloudFormation to orchestrate your application’s resources. During the testing phase before the application went live, a developer accidentally changed the Amazon RDS instance type in the CloudFormation template and updated the stack. This has caused the instance to be re-created, resulting In the loss of test data. How should you prevent others from updating the stack resources?

Answer options:

A.Within the AWS CloudFormation parameter with which users can select the Amazon RDS instance type, set AllowedValues only to contain the current instance type.
B.Use an AWS CloudFormation stack policy to deny updates to the instance.
C.In the AWS CloudFormation template, set the AWS::RDS::DBInstance’s DBlnstanceClass property to be read-only.
D.Subscribe to the AWS CloudFormation notification “BeforeResourceUpdate,” and call CancelStackUpdate if the resource identified is the Amazon RDS instance.
E.Update the stack using ChangeSets.