cfndsl 0.0.12 → 0.0.13
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.
- data/lib/cfndsl/Plurals.rb +5 -2
- data/lib/cfndsl/aws_types.yaml +49 -10
- metadata +3 -3
data/lib/cfndsl/Plurals.rb
CHANGED
|
@@ -7,9 +7,12 @@ module CfnDsl
|
|
|
7
7
|
@@plurals = {
|
|
8
8
|
"Metadata" => "Metadata",
|
|
9
9
|
"Property" => "Properties",
|
|
10
|
-
"Policy" => "Policies"
|
|
10
|
+
"Policy" => "Policies",
|
|
11
|
+
"SecurityGroupIngress" => "SecurityGroupIngress",
|
|
12
|
+
"SecurityGroupEgress" => "SecurityGroupEgress",
|
|
13
|
+
"DBSecurityGroupIngress" => "DBSecurityGroupIngress"
|
|
11
14
|
}
|
|
12
|
-
|
|
15
|
+
|
|
13
16
|
@@singles = {}
|
|
14
17
|
@@plurals.each_pair { |key,val| @@singles[val] = key }
|
|
15
18
|
|
data/lib/cfndsl/aws_types.yaml
CHANGED
|
@@ -115,11 +115,25 @@ Resources:
|
|
|
115
115
|
PublicDnsName: String
|
|
116
116
|
PrivateIp: String
|
|
117
117
|
PublicIp: String
|
|
118
|
+
"AWS::EC2::InternetGateway" :
|
|
119
|
+
Properties:
|
|
120
|
+
Tags: [ EC2Tag ]
|
|
121
|
+
"AWS::EC2::Route" :
|
|
122
|
+
Properties:
|
|
123
|
+
DestinationCidrBlock: String
|
|
124
|
+
GatewayId: String
|
|
125
|
+
InstanceId: String
|
|
126
|
+
NetworkInterfaceId: String
|
|
127
|
+
RouteTableId: String
|
|
128
|
+
"AWS::EC2::RouteTable" :
|
|
129
|
+
Properties:
|
|
130
|
+
VpcId: String
|
|
131
|
+
Tags: [ EC2Tag ]
|
|
118
132
|
"AWS::EC2::SecurityGroup" :
|
|
119
133
|
Properties:
|
|
120
134
|
GroupDescription: String
|
|
121
|
-
SecurityGroupIngress: EC2SecurityGroupRule
|
|
122
|
-
SecurityGroupEgress: EC2SecurityGroupRule
|
|
135
|
+
SecurityGroupIngress: [ EC2SecurityGroupRule ]
|
|
136
|
+
SecurityGroupEgress: [ EC2SecurityGroupRule ]
|
|
123
137
|
VpcId: String
|
|
124
138
|
"AWS::EC2::SecurityGroupEgress" :
|
|
125
139
|
Properties:
|
|
@@ -140,6 +154,16 @@ Resources:
|
|
|
140
154
|
SourceSecurityGroupOwnerId: String
|
|
141
155
|
FromPort: Number
|
|
142
156
|
ToPort: Number
|
|
157
|
+
"AWS::EC2::Subnet" :
|
|
158
|
+
Properties:
|
|
159
|
+
AvailabilityZone: String
|
|
160
|
+
VpcId: String
|
|
161
|
+
CidrBlock: String
|
|
162
|
+
Tags: [ EC2Tag ]
|
|
163
|
+
"AWS::EC2::SubnetRouteTableAssociation" :
|
|
164
|
+
Properties:
|
|
165
|
+
SubnetId: String
|
|
166
|
+
RouteTableId: String
|
|
143
167
|
"AWS::EC2::Volume" :
|
|
144
168
|
Properties:
|
|
145
169
|
AvailabilityZone: String
|
|
@@ -151,6 +175,16 @@ Resources:
|
|
|
151
175
|
InstanceId: String
|
|
152
176
|
VolumeId: String
|
|
153
177
|
Device: String
|
|
178
|
+
"AWS::EC2::VPC" :
|
|
179
|
+
Properties:
|
|
180
|
+
CidrBlock: String
|
|
181
|
+
InstanceTenancy: String
|
|
182
|
+
Tags: [ EC2Tag ]
|
|
183
|
+
"AWS::EC2::VPCGatewayAttachment" :
|
|
184
|
+
Properties:
|
|
185
|
+
InternetGatewayId: String
|
|
186
|
+
VpcId: String
|
|
187
|
+
VpnGatewayId: String
|
|
154
188
|
"AWS::ElastiCache::CacheCluster" :
|
|
155
189
|
Properties:
|
|
156
190
|
AutoMinorVersionUpgrade: Boolean
|
|
@@ -257,23 +291,28 @@ Resources:
|
|
|
257
291
|
PreferredBackupWindow: String
|
|
258
292
|
PreferredMaintenanceWindow: String
|
|
259
293
|
MultiAZ: Boolean
|
|
294
|
+
Tags: [ EC2Tag ]
|
|
295
|
+
VPCSecurityGroups: [ String ]
|
|
260
296
|
Attributes:
|
|
261
297
|
DBInstanceIdentifier: String
|
|
262
298
|
Endpoint.Address: String
|
|
263
299
|
Endpoint.Port: String
|
|
264
300
|
"AWS::RDS::DBSecurityGroup" :
|
|
265
301
|
Properties:
|
|
266
|
-
DBSubnetGroupDescription: String
|
|
267
|
-
SubnetIds: [ String ]
|
|
268
|
-
"AWS::RDS::SecurityGroup" :
|
|
269
|
-
Properties:
|
|
270
|
-
DBSecurityGroupIngress: RDSSecurityGroupRule
|
|
271
302
|
EC2VpcId: String
|
|
303
|
+
DBSecurityGroupIngress: [ RDSSecurityGroupRule ]
|
|
272
304
|
GroupDescription: String
|
|
273
|
-
|
|
305
|
+
SubnetIds: [ String ]
|
|
306
|
+
"AWS::RDS::DBSubnetGroup" :
|
|
307
|
+
Properties:
|
|
308
|
+
DBSubnetGroupDescription: String
|
|
309
|
+
SubnetIds: [ String ]
|
|
310
|
+
"AWS::RDS::DBSecurityGroupIngress" :
|
|
274
311
|
Properties:
|
|
275
312
|
CIDRIR: String
|
|
313
|
+
DBSecurityGroupName: String
|
|
276
314
|
EC2SecurityGroupId: String
|
|
315
|
+
EC2SecurityGroupName: String
|
|
277
316
|
EC2SecurityGroupOwnerId: String
|
|
278
317
|
"AWS::Route53::RecordSet" :
|
|
279
318
|
Properties:
|
|
@@ -282,7 +321,7 @@ Resources:
|
|
|
282
321
|
Name: String
|
|
283
322
|
Type: String
|
|
284
323
|
TTL: String
|
|
285
|
-
|
|
324
|
+
ResourceRecords: [ String ]
|
|
286
325
|
Weight: Integer
|
|
287
326
|
SetIdentifier: String
|
|
288
327
|
AliasTarget: String
|
|
@@ -439,4 +478,4 @@ Types:
|
|
|
439
478
|
|
|
440
479
|
|
|
441
480
|
|
|
442
|
-
|
|
481
|
+
|
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.0.
|
|
4
|
+
version: 0.0.13
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-05-
|
|
12
|
+
date: 2013-05-16 00:00:00.000000000 Z
|
|
13
13
|
dependencies: []
|
|
14
14
|
description: DSL for creating AWS Cloudformation templates
|
|
15
15
|
email: chris@howeville.com
|
|
@@ -55,7 +55,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
55
55
|
version: '0'
|
|
56
56
|
requirements: []
|
|
57
57
|
rubyforge_project:
|
|
58
|
-
rubygems_version: 1.8.
|
|
58
|
+
rubygems_version: 1.8.23
|
|
59
59
|
signing_key:
|
|
60
60
|
specification_version: 3
|
|
61
61
|
summary: AWS Cloudformation DSL
|