Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mark-schaal/69e4e411e01226c0d806d9ac6923e08c to your computer and use it in GitHub Desktop.
Save mark-schaal/69e4e411e01226c0d806d9ac6923e08c to your computer and use it in GitHub Desktop.
AWS - CloudFormation Templates - MetaData Processing Hierarchy Example
{
"AWSTemplateFormatVersion": "2010-09-09",
"Description": "",
"Metadata" : {
"AWS::CloudFormation::Init" : {
"configSets": {
"default": ["config"]
},
"config" : {
"packages":{},
"groups":{},
"users":{},
"sources":{},
"files":{},
"commands":{},
"service":{}
}
}
},
"Parameters": {},
"Mappings": {},
"Conditions": {},
"Resources": {},
"Outputs": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment