ExamQuestions.com

Register
Login
AWS Certified DevOps Engineer Professional Exam Questions

Amazon

AWS Certified DevOps Engineer Professional

436 / 500

Question 436:

Last week, a developer changed the name of an Amazon PostgreSQL RDS database instance from “employeeDatabase” to “employee_DB” and then updated the CloudFormation stack.

Answer options:

A.Use Change Sets to check how your changes might impact your running resources, especially for critical resources such as RDS. Change Sets is also able to tell if the stack update is successful or not so that it can greatly help on the CloudFormation resources management.
B.Make sure that all RDSs are protected in the DeletePolicy by using the “Keep” keyword, then they are protected from deletion when stack update is happening. You could then make a snapshot of the RDS to backup data to use it in the future.
C.Use a data pipeline to copy the data from RDS to S3 for backup before executing any stack update. Using this way, the RDS instance data is saved in a suitable manner.
D.Generate a change set to see if the change will cause your database to be replaced. Do the necessary backup before executing the Change Set. If everything is good, execute the Change Set and use the CloudFormation console to monitor.