cfndsl 0.1.8 → 0.1.9
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.rb +2 -2
- data/lib/cfndsl/aws_types.yaml +7 -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: b6aab5ffe19d9f9d4cfe349c181dbbc407085080
|
|
4
|
+
data.tar.gz: d3dff5841d4438f365b9d1dbcab08b733eadfbaa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 924554213420c517cfc27a9b5d3f7a4a04822c75058d7959381174f2cbae092bea666e5dc369e46c2f725e477f829edcc9792b1813cfa34030e5c9b77e145c83
|
|
7
|
+
data.tar.gz: ec868945bcfcc1c39c83b666cb65bbf7b0607a386dca23f54aa513483e3b7d4e9aa5c4deed8cdb2f90dee1b3487d26e30da6902273713d65536d51883a45b096
|
data/lib/cfndsl.rb
CHANGED
|
@@ -70,11 +70,11 @@ module CfnDsl
|
|
|
70
70
|
end
|
|
71
71
|
|
|
72
72
|
when :ruby
|
|
73
|
-
logstream("Runnning ruby file #{file}") if logstream
|
|
73
|
+
logstream.puts("Runnning ruby file #{file}") if logstream
|
|
74
74
|
b.eval(File.read(file), file)
|
|
75
75
|
|
|
76
76
|
when :raw
|
|
77
|
-
|
|
77
|
+
logstream.puts("Running raw ruby code #{file}") if logstream
|
|
78
78
|
b.eval(file, "raw code")
|
|
79
79
|
end
|
|
80
80
|
end
|
data/lib/cfndsl/aws_types.yaml
CHANGED
|
@@ -287,6 +287,7 @@ Resources:
|
|
|
287
287
|
CacheNodeType: String
|
|
288
288
|
CacheParameterGroupName: String
|
|
289
289
|
CacheSecurityGroupNames: [String]
|
|
290
|
+
CacheSubnetGroupName: String
|
|
290
291
|
Engine: String
|
|
291
292
|
EngineVersion: String
|
|
292
293
|
NotificationTopicArn: String
|
|
@@ -294,6 +295,7 @@ Resources:
|
|
|
294
295
|
Port: Integer
|
|
295
296
|
PreferrredAvailabilityZone: String
|
|
296
297
|
PreferredMaintenanceWindow: String
|
|
298
|
+
VpcSecurityGroupIds: [String]
|
|
297
299
|
"AWS::ElastiCache::ParameterGroup" :
|
|
298
300
|
Properties:
|
|
299
301
|
CacheParameterGroupFamily: String
|
|
@@ -307,6 +309,10 @@ Resources:
|
|
|
307
309
|
CacheSecurityGroupName: String
|
|
308
310
|
EC2SecurityGroupName: String
|
|
309
311
|
EC2SecurityGroupOwnerId: String
|
|
312
|
+
"AWS::ElastiCache::SubnetGroup" :
|
|
313
|
+
Properties:
|
|
314
|
+
Description: String
|
|
315
|
+
SubnetIds: [String]
|
|
310
316
|
"AWS::ElasticBeanstalk::Application" :
|
|
311
317
|
Properties:
|
|
312
318
|
ApplicationVersions: [ ApplicationVersion ]
|
|
@@ -334,6 +340,7 @@ Resources:
|
|
|
334
340
|
Subnets: [ String ]
|
|
335
341
|
ConnectionDrainingPolicy: ConnectionDrainingPolicy
|
|
336
342
|
ConnectionSettings: ConnectionSettings
|
|
343
|
+
LoadBalancerName: String
|
|
337
344
|
Attributes:
|
|
338
345
|
CanonicalHostedZoneName: String
|
|
339
346
|
CanonicalGostedZoneNameID: String
|
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.9
|
|
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: 2015-01-
|
|
12
|
+
date: 2015-01-13 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|