Cloudformation

From Ever changing code
Revision as of 08:14, 18 July 2018 by Pio2pio (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Basic structure of Json and Yaml templates

Read a file or variable line by line
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: {}

}