Skip to content

Instantly share code, notes, and snippets.

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