forked from widdix/aws-cf-templates
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvpc-endpoint.yaml
199 lines (199 loc) · 6.11 KB
/
vpc-endpoint.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
---
# Copyright 2018 widdix GmbH
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
AWSTemplateFormatVersion: '2010-09-09'
Description: 'VPC: Interface Endpoint, a cloudonaut.io template'
Metadata:
'AWS::CloudFormation::Interface':
ParameterGroups:
- Label:
default: 'Parent Stacks'
Parameters:
- ParentVPCStack
- ParentClientStack
- Label:
default: 'Endpoint Parameters'
Parameters:
- ServiceName
Parameters:
ParentVPCStack:
Description: 'Stack name of parent VPC stack based on vpc/vpc-*azs.yaml template.'
Type: String
ParentClientStack:
Description: 'Optional stack name of parent client stack based on state/client-sg.yaml template.'
Type: String
Default: ''
ServiceName:
Description: 'The name of the service.'
Type: String
AllowedValues: # generate list with aws --region us-east-1 ec2 describe-vpc-endpoint-services --query 'ServiceDetails[].ServiceName'
- 'access-analyzer'
- 'acm-pca'
- 'application-autoscaling'
- 'appmesh-envoy-management'
- 'appstream.api'
- 'appstream.streaming'
- athena
- autoscaling
- 'autoscaling-plans'
- awsconnector
- cassandra
- clouddirectory
- cloudformation
- cloudtrail
- 'codeartifact.api'
- 'codeartifact.repositories'
- codebuild
- 'codebuild-fips'
- codecommit
- 'codecommit-fips'
- codepipeline
- config
- dataexchange
- datasync
- ebs
- ec2
- ec2messages
- 'ecr.api'
- 'ecr.dkr'
- ecs
- 'ecs-agent'
- 'ecs-telemetry'
- 'elastic-inference.runtime'
- elasticbeanstalk
- 'elasticbeanstalk-health'
- elasticfilesystem
- 'elasticfilesystem-fips'
- elasticloadbalancing
- elasticmapreduce
- email-smtp # https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-set-up-vpc-endpoints.html
- events
- 'execute-api'
- 'git-codecommit'
- 'git-codecommit-fips'
- glue
- 'kinesis-firehose'
- 'kinesis-streams'
- kms
- logs
- monitoring
- 'qldb.session'
- 'rds-data'
- rekognition
- 'rekognition-fips'
- 'sagemaker.api'
- 'sagemaker.runtime'
- 'sagemaker.runtime-fips'
- secretsmanager
- servicecatalog
- sms
- 'sms-fips'
- sns
- sqs
- ssm
- ssmmessages
- states
- storagegateway
- sts
- synthetics
- transfer
- 'transfer.server'
- workspaces
Conditions:
HasParentClientStack: !Not [!Equals [!Ref ParentClientStack, '']]
UseEmailSMTP: !Equals [!Ref ServiceName, 'email-smtp']
Resources:
SecurityGroup:
Type: 'AWS::EC2::SecurityGroup'
Properties:
GroupDescription: !Ref 'AWS::StackName'
VpcId: {'Fn::ImportValue': !Sub '${ParentVPCStack}-VPC'}
SecurityGroupIngress: !If
- HasParentClientStack
- !If
- UseEmailSMTP
- - IpProtocol: tcp
FromPort: 25
ToPort: 25
SourceSecurityGroupId: {'Fn::ImportValue': !Sub '${ParentClientStack}-ClientSecurityGroup'}
- IpProtocol: tcp
FromPort: 465
ToPort: 465
SourceSecurityGroupId: {'Fn::ImportValue': !Sub '${ParentClientStack}-ClientSecurityGroup'}
- IpProtocol: tcp
FromPort: 587
ToPort: 587
SourceSecurityGroupId: {'Fn::ImportValue': !Sub '${ParentClientStack}-ClientSecurityGroup'}
- IpProtocol: tcp
FromPort: 2465
ToPort: 2465
SourceSecurityGroupId: {'Fn::ImportValue': !Sub '${ParentClientStack}-ClientSecurityGroup'}
- IpProtocol: tcp
FromPort: 2587
ToPort: 2587
SourceSecurityGroupId: {'Fn::ImportValue': !Sub '${ParentClientStack}-ClientSecurityGroup'}
- - IpProtocol: tcp
FromPort: 443
ToPort: 443
SourceSecurityGroupId: {'Fn::ImportValue': !Sub '${ParentClientStack}-ClientSecurityGroup'}
- !If
- UseEmailSMTP
- - IpProtocol: tcp
FromPort: 25
ToPort: 25
CidrIp: {'Fn::ImportValue': !Sub '${ParentVPCStack}-CidrBlock'}
- IpProtocol: tcp
FromPort: 465
ToPort: 465
CidrIp: {'Fn::ImportValue': !Sub '${ParentVPCStack}-CidrBlock'}
- IpProtocol: tcp
FromPort: 587
ToPort: 587
CidrIp: {'Fn::ImportValue': !Sub '${ParentVPCStack}-CidrBlock'}
- IpProtocol: tcp
FromPort: 2465
ToPort: 2465
CidrIp: {'Fn::ImportValue': !Sub '${ParentVPCStack}-CidrBlock'}
- IpProtocol: tcp
FromPort: 2587
ToPort: 2587
CidrIp: {'Fn::ImportValue': !Sub '${ParentVPCStack}-CidrBlock'}
- - IpProtocol: tcp
FromPort: 443
ToPort: 443
CidrIp: {'Fn::ImportValue': !Sub '${ParentVPCStack}-CidrBlock'}
Endpoint:
Type: 'AWS::EC2::VPCEndpoint'
Properties:
PrivateDnsEnabled: true
SecurityGroupIds: [!Ref SecurityGroup]
ServiceName: !Sub 'com.amazonaws.${AWS::Region}.${ServiceName}'
SubnetIds: !Split [',', {'Fn::ImportValue': !Sub '${ParentVPCStack}-SubnetsPrivate'}]
VpcEndpointType: Interface
VpcId: {'Fn::ImportValue': !Sub '${ParentVPCStack}-VPC'}
Outputs:
TemplateID:
Description: 'cloudonaut.io template id.'
Value: 'vpc/vpc-endpoint'
TemplateVersion:
Description: 'cloudonaut.io template version.'
Value: '__VERSION__'
StackName:
Description: 'Stack name.'
Value: !Sub '${AWS::StackName}'
Endpoint:
Description: 'The VPC endpoint to a service.'
Value: !Ref Endpoint
Export:
Name: !Sub '${AWS::StackName}-Endpoint'