Difference between revisions of "Cloudformation"
Jump to navigation
Jump to search
(Created page with "= Basic structure of Json and Yaml templates = {| class="wikitable" |+ Read a file or variable line by line |- ! JSON ! Yaml |- |<source> { "AWSTemplateFormatVersion": "20...") |
|||
Line 1: | Line 1: | ||
= Basic structure of Json and Yaml templates = | = Basic structure of Json and Yaml templates = | ||
{| class="wikitable" | {| class="wikitable" | ||
|+ | |+ Cloudformation template basic structure | ||
|- | |- | ||
! JSON | ! JSON |
Revision as of 07:15, 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: JSON string Metadata: {} Parameters: {} Mappings: {} Conditions: {} Transform: {} Resources: {} Outputs: {} } |