Question 81:
You need to create a Route53 record automatically in CloudFormation when not running in production during all launches of a Template. How should you implement this?
Answer options:
A.Use a Parameter for the environment, and add a Condition on the Route53 Resource in the template to create the record only when the environment is not production. B.Create two templates, one with the Route53 record value and one with a null value for the record. Use the one without it when deploying to production. C.Use a Parameter for the environment, and add a Condition on the Route53 Resource in the template to create the record with a null string when the environment is production. D.Create two templates, one with the Route53 record and one without it. Use the one without it when deploying to production.