cfnlego 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 46716e01f3ed582616d334ab7e4f6301162ba656
4
- data.tar.gz: ca0ea39c74f2d2764c5212869054e7d6c963ea94
3
+ metadata.gz: 674b2e137759efc79b5af9a30d96ca1a2046b14b
4
+ data.tar.gz: e84b4579a34f23736c78fbe0e079329669e5fbaa
5
5
  SHA512:
6
- metadata.gz: 9ab56d5e967a115ab47db4c11240c0e4049b37bbce072006dea36aeeb72a6dbe3bf82e6ff9239eb7f0d811c2ac29c91e811c8153015dc2acd3afeab5c2b8827f
7
- data.tar.gz: 1dd8cc21dd466efabb258565345654e1dfc8feeb590f7aaeb81526c718bc266534a06e5c1a2c7722ee180e4d9e8b3c9c9759bdb55f1e4cf4c1d68f6e9f79214a
6
+ metadata.gz: 6320a97d90cbae1a993a3fc536fb98c3c18b65801652a14975028fb258c66362a3db5898bf0464de19413114615f3ab4f0142a4c8cb4648778fcfbb1ada4fc8d
7
+ data.tar.gz: 0462857423561a60da0f10f1d24cfc65aae029f4ffd2ba245f84cf711f3ea0187d662d06870c7b9c4e28f3bfe59107c4647265a02182096f017c595781956872
data/Guardfile CHANGED
@@ -1,5 +1,6 @@
1
1
  guard :rspec, cmd: 'rspec --color --format documentation' do
2
2
  watch(%r{^spec/.+_spec\.rb$})
3
3
  watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
4
+ watch(%r{^lib/(.+)\.yaml$}) { |m| "spec/lib/resources/resources_definitions_spec.rb" }
4
5
  watch('spec/spec_helper.rb') { "spec" }
5
6
  end
data/README.md CHANGED
@@ -44,6 +44,7 @@ Example:
44
44
  - AWS::EC2::EIP
45
45
  - AWS::EC2::Instance
46
46
  - AWS::EC2::InternetGateway
47
+ - AWS::EC2::NatGateway
47
48
  - AWS::EC2::NetworkAcl
48
49
  - AWS::EC2::NetworkAclEntry
49
50
  - AWS::EC2::Route
@@ -70,8 +71,8 @@ Example:
70
71
  - AWS::IAM::InstanceProfile
71
72
  - AWS::IAM::ManagedPolicy
72
73
  - AWS::IAM::Role
73
- - AWS::KMS::Key
74
74
  - AWS::Kinesis::Stream
75
+ - AWS::KMS::Key
75
76
  - AWS::Lambda::EventSourceMapping
76
77
  - AWS::Lambda::Function
77
78
  - AWS::Lambda::Permission
@@ -0,0 +1,4 @@
1
+ AWS::EC2::NatGateway:
2
+ Properties:
3
+ AllocationId: "\"The allocation ID of an Elastic IP address to associate with the NAT gateway\""
4
+ SubnetId: "\"The public subnet in which to create the NAT gateway.\""
@@ -1,3 +1,3 @@
1
1
  module Cfnlego
2
- VERSION='0.3.0'
2
+ VERSION='0.3.1'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cfnlego
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Yung
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-04-21 00:00:00.000000000 Z
11
+ date: 2016-05-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ruby-beautify
@@ -99,6 +99,7 @@ files:
99
99
  - lib/cfnlego/resources/AWS/EC2/EIP.yaml
100
100
  - lib/cfnlego/resources/AWS/EC2/Instance.yaml
101
101
  - lib/cfnlego/resources/AWS/EC2/InternetGateway.yaml
102
+ - lib/cfnlego/resources/AWS/EC2/NatGateway.yaml
102
103
  - lib/cfnlego/resources/AWS/EC2/NetworkAcl.yaml
103
104
  - lib/cfnlego/resources/AWS/EC2/NetworkAclEntry.yaml
104
105
  - lib/cfnlego/resources/AWS/EC2/Route.yaml