You have been hired as a new Developer with no experience using CloudFormation. To learn how it works you quickly create a template and upload it through the management console. You find that the template is missing a section that is required. Which section of the template is required?
Correct answer - "Resources" : Resources is the only mandatory section of the CloudFormation template and all other sections are optional. For more information visit:
Incorrect:
"Parameters" - Optional values to pass to your template at runtime
"Outputs" - Describes the values that are returned whenever you view your stack's properties.
"Mappings" - A mapping of keys and associated values that you can use to specify conditional parameter values
For more information visit