Created
May 17, 2013 19:22
-
-
Save jcdyer/5601332 to your computer and use it in GitHub Desktop.
The JSON template created by a pyplate with nested joins.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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