19 lines
No EOL
449 B
YAML
19 lines
No EOL
449 B
YAML
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 |