forked from widdix/aws-cf-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvpc-endpoint.yaml
123 lines (123 loc) · 3.58 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
---
# 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'
- notebook
- cloudformation
- cloudtrail
- codebuild
- 'codebuild-fips'
- codecommit
- 'codecommit-fips'
- codepipeline
- config
- dynamodb
- ec2
- ec2messages
- 'ecr.api'
- 'ecr.dkr'
- ecs
- 'ecs-agent'
- 'ecs-telemetry'
- 'elastic-inference.runtime'
- elasticloadbalancing
- events
- 'execute-api'
- 'git-codecommit'
- 'git-codecommit-fips'
- 'kinesis-firehose'
- 'kinesis-streams'
- kms
- logs
- monitoring
- s3
- 'sagemaker.api'
- 'sagemaker.runtime'
- 'sagemaker.runtime-fips'
- secretsmanager
- servicecatalog
- sns
- sqs
- ssm
- ssmmessages
- transfer
- 'transfer.server'
Conditions:
HasParentClientStack: !Not [!Equals [!Ref ParentClientStack, '']]
Resources:
SecurityGroup:
Type: 'AWS::EC2::SecurityGroup'
Properties:
GroupDescription: !Ref 'AWS::StackName'
VpcId: {'Fn::ImportValue': !Sub '${ParentVPCStack}-VPC'}
SecurityGroupIngress:
- !If
- HasParentClientStack
- IpProtocol: tcp
FromPort: 443
ToPort: 443
SourceSecurityGroupId: {'Fn::ImportValue': !Sub '${ParentClientStack}-ClientSecurityGroup'}
- 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'