The CloudFormation template may contain one or more of the following sections:
- AWSTemplateFormatVersion: In this optional section, this specifies the CloudFormation template version that the template conforms to.
- Description: In this optional section, we can add any arbitrary string of text. This is designed to be the human-readable aspect of the template that will help us quickly understand what the template does.
- Metadata: In this optional section, we can specify any metadata that we would like to pass to the services and instances at the time of deployment.
- Parameters: In this optional section, we can specify any values that can be used in the Resource section at the time of deployment. We can specify parameters to create ...