AWS - Cloudformation for S3 Posted on 2018-07-08 | Template for S3 bitbucket Delete the stack will delete the S3 bucket 123456789101112131415AWSTemplateFormatVersion: '2010-09-09'Description: "Sample CloudFormation Template: this template will define a statck with S3 bucket"Resources: MyS3Bucket: Type: AWS::S3::Bucket Properties: AccessControl: PublicRead Tags: - Key: "S3BucketName" Value: "Dev" Outputs: BucketName: Value: !Ref 'MyS3Bucket' Description: Name of the sample Amazon S3 bucket with a notification configuration. Reward Makes Perfect Donate Bitcoin Post author: Rachel Rui Liu Post link: https://racheliurui.github.io/2018/07/08/markdown/AWS/AWS2018/Cloudformation/S3_snippets/ Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 3.0 unless stating additionally.