A Developer at a company is working on a CloudFormation template to set up resources. Resources will be defined using code and provisioned based on conditions. Which section of a CloudFormation template does not allow for conditions?
Correct answer - "Parameters" : Conditions cannot be used within the parameters section. Please visit
Incorrect:
"Resources" - Associate conditions with the resources that you want to conditionally create
"Conditions" - You can define conditions in this section
"Outputs" - Associate conditions with the outputs that you want to conditionally create
For more information visit