convection 0.2.24 → 0.2.25
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a9d27d6e4bf8123a1f14054c838e722cc1828734
|
4
|
+
data.tar.gz: c8bad8c61c133dcc317babdceedab288eb9488fa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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-
|
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
|