You must be logged in to view saved presets
This guided walkthrough is for configuring AWS Client VPN in an AWS account. The following can be deployed using this walkthrough:
Consider the following items before starting with this walkthrough:
AWSTemplateFormatVersion: '2010-09-09'
Description: ''
Resources:
ClientVpnEndpoint:
Type: 'AWS::EC2::ClientVpnEndpoint'
Properties:
ClientCidrBlock: 192.168.0.0/22
ServerCertificateArn: ''
ConnectionLogOptions:
Enabled: false
ClientConnectOptions:
Enabled: false
TransportProtocol: udp
SplitTunnel: false
VpnPort: 443
SelfServicePortal: enabled
SessionTimeoutHours: 24
ClientLoginBannerOptions:
Enabled: false
Parameters: {}
Metadata: {}
Conditions: {}