Difference between revisions of "Cloudformation"
Jump to navigation
Jump to search
Line 9: | Line 9: | ||
{ | { | ||
"AWSTemplateFormatVersion": "2010-09-09", | "AWSTemplateFormatVersion": "2010-09-09", | ||
"Description": "JSON string", | "Description": "JSON string, version 1.0", | ||
"Metadata": {}, | "Metadata": {}, | ||
"Parameters": {}, | "Parameters": {}, | ||
Line 21: | Line 21: | ||
|<source> | |<source> | ||
AWSTemplateFormatVersion: 2010-09-09 | AWSTemplateFormatVersion: 2010-09-09 | ||
Description: Yaml string | Description: Yaml string, version 1.0 | ||
Metadata: {} | Metadata: {} | ||
Parameters: {} | Parameters: {} |
Revision as of 07:17, 18 July 2018
Basic structure of Json and Yaml templates
JSON | Yaml |
---|---|
{ "AWSTemplateFormatVersion": "2010-09-09", "Description": "JSON string, version 1.0", "Metadata": {}, "Parameters": {}, "Mappings": {}, "Conditions": {}, "Transform": {}, "Resources": {}, "Outputs": {} } |
AWSTemplateFormatVersion: 2010-09-09 Description: Yaml string, version 1.0 Metadata: {} Parameters: {} Mappings: {} Conditions: {} Transform: {} Resources: {} Outputs: {} } |