-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodule.yml
164 lines (164 loc) · 4.94 KB
/
module.yml
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
---
# 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: 'cfn-modules: AWS VPC Subnet'
# cfn-modules:implements(ExposeId)
Parameters:
VpcPlainModule:
Description: 'stack name of vpc-plain module'
Type: String
Reach:
Description: 'Should the subnet has a route to the Internet?'
Type: String
AllowedValues: [private, public]
AZIndex:
Description: 'Index of the AZ where the subnet should be created in'
Type: Number
MinValue: 0
MaxValue: 2
AZChar:
Description: 'Availability zone char'
Type: String
AllowedValues: [A, B, C]
SubnetIndex:
Description: 'Index of the subnet'
Type: Number
MinValue: 0
MaxValue: 5
SubnetCount:
Description: 'To slice the IP address ranges you need to specify how many subnets you want to create in the VPC'
Type: Number
MinValue: 1
MaxValue: 6
Conditions:
IsPublic: !Equals [!Ref Reach, 'public']
IsPrivate: !Equals [!Ref Reach, 'private']
Resources:
Subnet:
Type: 'AWS::EC2::Subnet'
Properties:
AvailabilityZone: !Select [!Ref AZIndex, !GetAZs '']
CidrBlock: !Select [!Ref SubnetIndex, !Cidr [{'Fn::ImportValue': !Sub '${VpcPlainModule}-CidrBlock'}, !Ref SubnetCount, 12]]
Ipv6CidrBlock: !Select [!Ref SubnetIndex, !Cidr [{'Fn::ImportValue': !Sub '${VpcPlainModule}-CidrBlockIPv6'}, !Ref SubnetCount, 64]]
AssignIpv6AddressOnCreation: true
VpcId:
'Fn::ImportValue': !Sub '${VpcPlainModule}-Id'
Tags:
- Key: Name
Value: !Sub '${AZChar} ${Reach}'
- Key: Reach
Value: !Ref Reach
RouteTable:
Type: 'AWS::EC2::RouteTable'
Properties:
VpcId:
'Fn::ImportValue': !Sub '${VpcPlainModule}-Id'
Tags:
- Key: Name
Value: !Sub '${AZChar} ${Reach}'
SubnetRouteTableAssociation:
Type: 'AWS::EC2::SubnetRouteTableAssociation'
Properties:
SubnetId: !Ref Subnet
RouteTableId: !Ref RouteTable
RouteInternet:
Type: 'AWS::EC2::Route'
Condition: IsPublic
Properties:
RouteTableId: !Ref RouteTable
DestinationCidrBlock: '0.0.0.0/0'
GatewayId: {'Fn::ImportValue': !Sub '${VpcPlainModule}-InternetGatewayId'}
RouteInternetPublicIPv6:
Type: 'AWS::EC2::Route'
Condition: IsPublic
Properties:
RouteTableId: !Ref RouteTable
DestinationIpv6CidrBlock: '::/0'
GatewayId: {'Fn::ImportValue': !Sub '${VpcPlainModule}-InternetGatewayId'}
RouteInternetPrivateIPv6:
Type: 'AWS::EC2::Route'
Condition: IsPrivate
Properties:
RouteTableId: !Ref RouteTable
DestinationIpv6CidrBlock: '::/0'
EgressOnlyInternetGatewayId: {'Fn::ImportValue': !Sub '${VpcPlainModule}-EgressOnlyInternetGatewayId'}
NetworkAcl:
Type: 'AWS::EC2::NetworkAcl'
Properties:
VpcId:
'Fn::ImportValue': !Sub '${VpcPlainModule}-Id'
Tags:
- Key: Name
Value: !Sub '${AZChar} ${Reach}'
NetworkAclEntryAllowAllInbound:
Type: 'AWS::EC2::NetworkAclEntry'
Properties:
NetworkAclId: !Ref NetworkAcl
RuleNumber: 99
Protocol: -1
RuleAction: allow
Egress: false
CidrBlock: '0.0.0.0/0'
NetworkAclEntryAllowAllInboundIPv6:
Type: 'AWS::EC2::NetworkAclEntry'
Properties:
NetworkAclId: !Ref NetworkAcl
RuleNumber: 98
Protocol: -1
RuleAction: allow
Egress: false
Ipv6CidrBlock: '::/0'
NetworkAclEntryAllowAllOutbound:
Type: 'AWS::EC2::NetworkAclEntry'
Properties:
NetworkAclId: !Ref NetworkAcl
RuleNumber: 99
Protocol: -1
RuleAction: allow
Egress: true
CidrBlock: '0.0.0.0/0'
NetworkAclEntryAllowAllOutboundIPv6:
Type: 'AWS::EC2::NetworkAclEntry'
Properties:
NetworkAclId: !Ref NetworkAcl
RuleNumber: 98
Protocol: -1
RuleAction: allow
Egress: true
Ipv6CidrBlock: '::/0'
SubnetNetworkAclAssociation:
Type: 'AWS::EC2::SubnetNetworkAclAssociation'
Properties:
SubnetId: !Ref Subnet
NetworkAclId: !Ref NetworkAcl
Outputs:
ModuleId:
Value: 'vpc-subnet'
ModuleVersion:
Value: '2.1.0'
StackName:
Value: !Ref 'AWS::StackName'
Id:
Value: !Ref Subnet
Export:
Name: !Sub '${AWS::StackName}-Id'
RouteTableId:
Value: !Ref RouteTable
Export:
Name: !Sub '${AWS::StackName}-RouteTableId'
AvailabilityZone:
Value: !Select [!Ref AZIndex, !GetAZs '']
Export:
Name: !Sub '${AWS::StackName}-AvailabilityZone'