Skip to content

Instantly share code, notes, and snippets.

@claudijd
Created September 26, 2018 21:36
Show Gist options
  • Select an option

  • Save claudijd/2f625f5ecd1da327381cbc79e5218887 to your computer and use it in GitHub Desktop.

Select an option

Save claudijd/2f625f5ecd1da327381cbc79e5218887 to your computer and use it in GitHub Desktop.
cloudformation-template-create-stack.json
{
"AWSTemplateFormatVersion": "2010-09-09",
"Description": "The AWS CloudFormation template for this Serverless application",
"Resources": {
"ServerlessDeploymentBucket": {
"Type": "AWS::S3::Bucket"
}
},
"Outputs": {
"ServerlessDeploymentBucketName": {
"Value": {
"Ref": "ServerlessDeploymentBucket"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment