Difference between revisions of "Cloudformation"
Jump to navigation
Jump to search
| Line 21: | Line 21: | ||
|<source> | |<source> | ||
AWSTemplateFormatVersion: 2010-09-09 | AWSTemplateFormatVersion: 2010-09-09 | ||
Description: | Description: Yaml string | ||
Metadata: {} | Metadata: {} | ||
Parameters: {} | Parameters: {} | ||
Revision as of 07:16, 18 July 2018
Basic structure of Json and Yaml templates
| 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: {}
} |