Difference between revisions of "Cloudformation"

From Ever changing code
Jump to navigation Jump to search
Line 21: Line 21:
|<source>
|<source>
AWSTemplateFormatVersion: 2010-09-09
AWSTemplateFormatVersion: 2010-09-09
Description: JSON string
Description: Yaml string
Metadata: {}
Metadata: {}
Parameters: {}
Parameters: {}

Revision as of 08:16, 18 July 2018

Basic structure of Json and Yaml templates

Cloudformation template basic structure
JSON Yaml
{
    "AWSTemplateFormatVersion": "2010-09-09",
    "Description": "JSON string",
    "Metadata": {},
    "Parameters": {},
    "Mappings": {},
    "Conditions": {},
    "Transform": {},
    "Resources": {},
    "Outputs": {}
}
AWSTemplateFormatVersion: 2010-09-09
Description: Yaml string
Metadata: {}
Parameters: {}
Mappings: {}
Conditions: {}
Transform: {}
Resources: {}
Outputs: {}

}