cfndsl 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/cfndsl/aws_types.yaml +39 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 38ce6af7d0c1ab9c73b1ccdccf25b4918d8c5255
|
|
4
|
+
data.tar.gz: 20c00f1e99efee8c6cff428bceaa6fc8bb1f865d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ffdd2279d299d641943a928ef9faee185574af9ef89afa10706c610cb4aebdeadcb43af4de963c0f6be9788af074c1d70777a72b55ae5feed55f7a3c6b717956
|
|
7
|
+
data.tar.gz: 9cb8240e92b91c87f923de0e6900b2b25fab899d4ae8cfd7b581c4af58b6e0ee281ecfbc8bfdfca5e73da75a7edce9cceb112ddc9c7212df5dd88393823b2d2a
|
data/lib/cfndsl/aws_types.yaml
CHANGED
|
@@ -133,6 +133,17 @@ Resources:
|
|
|
133
133
|
"AWS::EC2::InternetGateway" :
|
|
134
134
|
Properties:
|
|
135
135
|
Tags: [ EC2Tag ]
|
|
136
|
+
"AWS::EC2::NetworkAclEntry" :
|
|
137
|
+
Properties:
|
|
138
|
+
Tags: [ EC2Tag ]
|
|
139
|
+
CidrBlock: String
|
|
140
|
+
Egress: Boolean
|
|
141
|
+
Icmp: EC2Icmp
|
|
142
|
+
NetworkAclId: String
|
|
143
|
+
PortRange: EC2PortRange
|
|
144
|
+
RuleAction: String
|
|
145
|
+
RuleNumber: Integer
|
|
146
|
+
Protocol: Integer
|
|
136
147
|
"AWS::EC2::Route" :
|
|
137
148
|
Properties:
|
|
138
149
|
DestinationCidrBlock: String
|
|
@@ -179,6 +190,10 @@ Resources:
|
|
|
179
190
|
Properties:
|
|
180
191
|
SubnetId: String
|
|
181
192
|
RouteTableId: String
|
|
193
|
+
"AWS::EC2::SubnetNetworkAclAssociation" :
|
|
194
|
+
Properties:
|
|
195
|
+
SubnetId: String
|
|
196
|
+
NetworkAclId: String
|
|
182
197
|
"AWS::EC2::Volume" :
|
|
183
198
|
Properties:
|
|
184
199
|
AvailabilityZone: String
|
|
@@ -195,6 +210,24 @@ Resources:
|
|
|
195
210
|
CidrBlock: String
|
|
196
211
|
InstanceTenancy: String
|
|
197
212
|
Tags: [ EC2Tag ]
|
|
213
|
+
EnableDnsSupport: Boolean
|
|
214
|
+
EnableDnsHostnames: Boolean
|
|
215
|
+
"AWS::EC2::DHCPOptions" :
|
|
216
|
+
Properties:
|
|
217
|
+
DomainName : String
|
|
218
|
+
DomainNameServers : [ String ]
|
|
219
|
+
NetbiosNameServers : [ String ]
|
|
220
|
+
NetbiosNodeType : Number
|
|
221
|
+
NtpServers : [ String ]
|
|
222
|
+
Tags : [ EC2Tag ]
|
|
223
|
+
"AWS::EC2::VPCDHCPOptionsAssociation" :
|
|
224
|
+
Properties:
|
|
225
|
+
DhcpOptionsId: String
|
|
226
|
+
VpcId: String
|
|
227
|
+
"AWS::EC2::NetworkAcl" :
|
|
228
|
+
Properties:
|
|
229
|
+
VpcId: String
|
|
230
|
+
Tags : [ EC2Tag ]
|
|
198
231
|
"AWS::EC2::VPCGatewayAttachment" :
|
|
199
232
|
Properties:
|
|
200
233
|
InternetGatewayId: String
|
|
@@ -505,3 +538,9 @@ Types:
|
|
|
505
538
|
IAMEmbeddedPolicy:
|
|
506
539
|
PolicyDocument: JSON
|
|
507
540
|
PolicyName: String
|
|
541
|
+
EC2PortRange:
|
|
542
|
+
From: Integer
|
|
543
|
+
To: Integer
|
|
544
|
+
EC2Icmp:
|
|
545
|
+
Code: Integer
|
|
546
|
+
Type: Integer
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cfndsl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Steven Jack
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2014-05-
|
|
12
|
+
date: 2014-05-28 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rake
|