Difference between revisions of "Cloudformation"

From Ever changing code
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"
|+ Read a file or variable line by line
|+ Cloudformation template basic structure
|-
|-
! JSON
! JSON

Revision as of 08:15, 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: JSON string
Metadata: {}
Parameters: {}
Mappings: {}
Conditions: {}
Transform: {}
Resources: {}
Outputs: {}

}