Skip to content

Instantly share code, notes, and snippets.

@fernandohonig
Created August 19, 2016 07:51
Show Gist options
  • Save fernandohonig/42f98fc7be0b3acc4006e6b5bf9d455b to your computer and use it in GitHub Desktop.
Save fernandohonig/42f98fc7be0b3acc4006e6b5bf9d455b to your computer and use it in GitHub Desktop.
{
"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