From 45028307fdfc933cfb61006b4d3815739ae4857d Mon Sep 17 00:00:00 2001 From: Daisuke Date: Wed, 7 May 2025 20:08:38 +0900 Subject: [PATCH] feat: create new Cloudformation template to make a S3 bucket as a source --- template-blog-source-bucket.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 template-blog-source-bucket.yaml diff --git a/template-blog-source-bucket.yaml b/template-blog-source-bucket.yaml new file mode 100644 index 0000000..23be531 --- /dev/null +++ b/template-blog-source-bucket.yaml @@ -0,0 +1,19 @@ +AWSTemplateFormatVersion: '2010-09-09' + +Parameters: + BucketName: + Type: String + Description: "The name for the S3 bucket to be used for public website hosting (must be globally unique)" + Default: "naputo-blog-source" + +Resources: + + SourceBucket: + Type: AWS::S3::Bucket + Properties: + BucketName: !Ref BucketName + Tags: + - Key: Project + Value: Git-server + VersioningConfiguration: + Status: Enabled \ No newline at end of file