Guided Walkthroughs
Step-by-step configuration wizards for your environment
Dedicated Security Account
AWS Backup Strategy
VPC Connectivity Setup
Automated Patching
All Guides
Configuration to create a VPC endpoint in an existing VPC. VPC endpoints allow private connectivity from an VPC to supported AWS services. Both Interface and Gateway endpoints are supported.
To configure select the AWS Service, and provide the required details for the existing VPC:
The configuration templates also include supporting configuration:
AWSTemplateFormatVersion: '2010-09-09'
Description: ''
Resources:
VPCEndpoint:
Type: 'AWS::EC2::VPCEndpoint'
Properties:
ServiceName:
'Fn::Join':
- ''
- - com.amazonaws.
- Ref: 'AWS::Region'
- .s3
VpcId: ''
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal: '*'
Action:
- '*'
Resource:
- '*'
RouteTableIds:
- ''
Parameters: {}
Metadata: {}
Conditions: {}