Skip to content

Instantly share code, notes, and snippets.

@jcdyer
Created May 17, 2013 19:22
Show Gist options
  • Save jcdyer/5601332 to your computer and use it in GitHub Desktop.
Save jcdyer/5601332 to your computer and use it in GitHub Desktop.
The JSON template created by a pyplate with nested joins.
{
"AWSTemplateFormatVersion": "2010-09-09",
"Description": "demonstration of an error with nested joins.",
"Resources": {
"Value": {
"Fn::Join": [
"",
[
"site_url: ",
[
{
"Fn::Join": [
".",
[
{
"Ref": "AWS::StackName"
},
"mmstacks.net"
]
]
}
]
]
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment