rubycfn 0.3.0 → 0.3.1
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/CHANGELOG.md +4 -1
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/lib/compound/vpc.rb +1 -1
- data/lib/rubycfn/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eab8c8a943fdf2029c93db966b95036ccdc61ef2
|
|
4
|
+
data.tar.gz: b4c956f4c40fbe78e08148f15444cf73cd9af4c4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7d3538ea7256620bf8de8a850b98198290a473af222361684560f6192802c1a137a4938c6ec66e37b88cea4c5378aaf7d33121ce5d48db37649e011a3eeeedf9
|
|
7
|
+
data.tar.gz: ee06a42c32da3ec67cb2910381f7770ee2dee8ee78fc4bd33826e8379c009ccefe6e7bcca99532526e2c066422114256ac2e13fcb7501981fec8698b9c0b067b
|
data/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,10 @@
|
|
|
2
2
|
All notable changes to Rubycfn will be documented in this file.
|
|
3
3
|
This project uses [Semantic Versioning](http://semver.org/).
|
|
4
4
|
|
|
5
|
-
## 0.3.
|
|
5
|
+
## 0.3.2 (Next Release)
|
|
6
|
+
|
|
7
|
+
## 0.3.1
|
|
8
|
+
* Fixed bug in VPC template generation -- [@dennisvink][@dennisvink]
|
|
6
9
|
|
|
7
10
|
## 0.3.0
|
|
8
11
|
* Removed non-AWS code. For non-AWS resources pin to 0.2.1 -- [@dennisvink][@dennisvink]
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -16,7 +16,7 @@ __________ ____ __________________.___._________ _____________________
|
|
|
16
16
|
| _/ | /| | _// | |/ \ \/ | __) | | _/
|
|
17
17
|
| | \ | / | | \\____ |\ \____| \ | | \
|
|
18
18
|
|____|_ /______/ |______ // ______| \______ /\___ / |______ /
|
|
19
|
-
\/ \/ \/ \/ \/ \/ [v0.
|
|
19
|
+
\/ \/ \/ \/ \/ \/ [v0.3.1]
|
|
20
20
|
Project name? example
|
|
21
21
|
Account ID? 1234567890
|
|
22
22
|
Select region EU (Frankfurt)
|
data/lib/compound/vpc.rb
CHANGED
|
@@ -50,7 +50,7 @@ module RubyCfn
|
|
|
50
50
|
r.property(:route_table_id) { "#{prefix}_route_table#{suffix}".cfnize.ref }
|
|
51
51
|
end
|
|
52
52
|
|
|
53
|
-
resource "#{prefix}_route_table#{suffix}.cfnize
|
|
53
|
+
resource "#{prefix}_route_table#{suffix}".cfnize,
|
|
54
54
|
type: "AWS::EC2::RouteTable" do |r, index|
|
|
55
55
|
r.property(:vpc_id) { "#{prefix}_vpc#{suffix}".cfnize.ref }
|
|
56
56
|
end
|
data/lib/rubycfn/version.rb
CHANGED