A deployment script sets the cloud region from a variable and creates a NAT gateway only when a flag is true. What scripting concepts does this demonstrate?
Select an answer to reveal the explanation.
Short Explanation
Variables are the fill-in-the-blank blanks; conditionals are the 'if we need a NAT, build it' fork in the road. That is plain scripting logic making one template flexible across environments.
Full Explanation
Automation scripts commonly use variables to parameterize values such as region and conditionals to include optional resources like a NAT gateway only when required. Those constructs enable one codebase to adapt across environments without hard-coding every decision. Lifecycle policies, TPM attestation, and DNSSEC address other concerns.