Solved

You Need to Create a Route53 Record Automatically in CloudFormation

Question 508

Multiple Choice

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?


A) Use a <code>Parameter</code> for <code>environment</code>, and add a <code>Condition</code> on the Route53 <code>Resource</code> in the template to create the record only when <code>environment</code> is not <code>production</code>.
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 <code>Parameter</code> for <code>environment</code>, and add a <code>Condition</code> on the Route53 <code>Resource</code> in the template to create the record with a null string when <code>environment</code> is <code>production</code>.
D) Create two templates, one with the Route53 record and one without it. Use the one without it when deploying to production.

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions