[CloudFormation] S3バケットの作成
S3のバケットを作成します
AWSTemplateFormatVersion: '2010-09-09'
Description: Create an S3 bucket
Resources:
S3Bucket:
Type: AWS::S3::Bucket
Properties:
BucketName: apiless-test-2023
Outputs:
BucketName:
Description: Name of the S3 bucket
Value: !Ref S3Bucket
Export:
Name: BucketName