convection 0.2.24 → 0.2.25

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f5e780e7f0bb90ecfd2cc7e9e32e21cb2df085d4
4
- data.tar.gz: 9940275198dc99a9ab7f53ba88451b638fb22fe8
3
+ metadata.gz: a9d27d6e4bf8123a1f14054c838e722cc1828734
4
+ data.tar.gz: c8bad8c61c133dcc317babdceedab288eb9488fa
5
5
  SHA512:
6
- metadata.gz: d4a5ff35679e3a5a19de9fc369e60e87f6dbfcf9436cc6b7ce125751cc48aebd0a754ef485924b1343dd9c035f772a91a385547202182613139a8961716af284
7
- data.tar.gz: f88cbc2c35eb919be2976f17249367866b7e58cb045b384a459dfd1f2ada87bfec7c28ee9a395f0b2e75554d113b67fed03edbdc9c61e0e55b2da5e9d3024312
6
+ metadata.gz: 9b8ea1cf4cb5ff942423e48241126be05a874a30beb6d70fc2dfb632247df22da9937daeb239b3b17e6138fec06509459f170930f58f062b651645dd9fc8deed
7
+ data.tar.gz: af1aa6d83c2ee44fe211e6770fb23ab4b601f6b6dad1728e4211e125d90093129df9d63d5a500e025a48628b9e5fbe6e0f683940bb8806bafad1eeaf619cee85
@@ -0,0 +1,26 @@
1
+ require_relative '../resource'
2
+
3
+ module Convection
4
+ module Model
5
+ class Template
6
+ class Resource
7
+ ##
8
+ # AWS::EC2::VPCPeeringConnection
9
+ ##
10
+ class EC2VPCPeeringConnection < Resource
11
+ include Model::Mixin::Taggable
12
+
13
+ type 'AWS::EC2::VPCPeeringConnection'
14
+ property :vpc, 'VpcId'
15
+ property :peer_vpc, 'PeerVpcId'
16
+
17
+ def render(*args)
18
+ super.tap do |resource|
19
+ render_tags(resource)
20
+ end
21
+ end
22
+ end
23
+ end
24
+ end
25
+ end
26
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: convection
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.24
4
+ version: 0.2.25
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Manero
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-05-05 00:00:00.000000000 Z
11
+ date: 2016-05-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk
@@ -151,6 +151,7 @@ files:
151
151
  - lib/convection/model/template/resource/aws_ec2_vpc.rb
152
152
  - lib/convection/model/template/resource/aws_ec2_vpc_endpoint.rb
153
153
  - lib/convection/model/template/resource/aws_ec2_vpc_gateway_attachment.rb
154
+ - lib/convection/model/template/resource/aws_ec2_vpc_peering_connection.rb
154
155
  - lib/convection/model/template/resource/aws_elasticache_cluster.rb
155
156
  - lib/convection/model/template/resource/aws_elasticache_parameter_group.rb
156
157
  - lib/convection/model/template/resource/aws_elasticache_replication_group.rb