[CloudFormation] S3エンドポイントの作成
S3エンドポイントの作成では、S3エンドポイントへのアクセスをエンドポイントに向けるためにルートテーブルに追加する必要があります。Gateway型でIPアドレスを持ちません。
AWSTemplateFormatVersion: '2010-09-09'
Description: Create S3 endpoint
Resources:
S3VpcEndpoint:
Type: 'AWS::EC2::VPCEndpoint'
Properties:
VpcId: !ImportValue VpcId
ServiceName: !Sub com.amazonaws.${AWS::Region}.s3
RouteTableIds:
- !ImportValue RouteTableId # 要RouteTableId
VpcEndpointType: Gateway