Created
August 19, 2016 07:51
-
-
Save fernandohonig/42f98fc7be0b3acc4006e6b5bf9d455b 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", | |
"Parameters" : { | |
"BucketName": { | |
"Description": "Name of MyS3Bucket", | |
"Type": "String", | |
"Default": "mys3bucketacloudgurutraining" | |
} | |
}, | |
"Resources" : { | |
"S3Bucket" : { | |
"Type" : "AWS::S3::Bucket", | |
"Properties" : { | |
"BucketName": { "Ref": "BucketName" } | |
} | |
} | |
}, | |
"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