Created
August 19, 2016 07:54
-
-
Save fernandohonig/0f147d7a48feb0b64ab2de8bae93e6a9 to your computer and use it in GitHub Desktop.
This file contains 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", | |
"Resources" : { | |
"S3Bucket" : { | |
"Type" : "AWS::S3::Bucket", | |
"Properties" : { | |
} | |
} | |
}, | |
"Outputs" : { | |
"S3BucketName" : { | |
"Value" : {"Ref": "S3Bucket"}, | |
"Description" : "Name of S3 bucket" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment