cloud_former 0.7.11 → 0.7.12
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/cloud_former.rb +1 -0
- data/lib/cloud_former/resources/ec2/vpc_endpoint.rb +11 -0
- data/lib/cloud_former/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ca4e0066415458e1b308b34881e13df101730477
|
4
|
+
data.tar.gz: 70dc364ad688eb1d51ecb86736c353886930accb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3e447a2b1ba44a4df5b9895ad595e5c39fad7cbdb3e786df3635bffea03420d76e72e927ccd41f5cab354e8fa747cfda9d3e6e3b732083945f8d60bb1ea5c988
|
7
|
+
data.tar.gz: 8ea81d86feca1a79f97fa2bfcd45716057c343ece50646a4e752b8ae302a8f54b173ee7c7662f0bc73d5a7247733fb54442b9f386c1b6041eca8eb98fb7dade3
|
data/lib/cloud_former.rb
CHANGED
@@ -123,6 +123,7 @@ module CloudFormer
|
|
123
123
|
autoload :VolumeAttachment, 'cloud_former/resources/ec2/volume_attachment'
|
124
124
|
autoload :VPC, 'cloud_former/resources/ec2/vpc'
|
125
125
|
autoload :VPCDHCPOptionsAssociation, 'cloud_former/resources/ec2/vpc_dhcp_options_association'
|
126
|
+
autoload :VPCEndpoint, 'cloud_former/resources/ec2/vpc_endpoint'
|
126
127
|
autoload :VPCGatewayAttachment, 'cloud_former/resources/ec2/vpc_gateway_attachment'
|
127
128
|
autoload :VPCPeeringConnection, 'cloud_former/resources/ec2/vpc_peering_connection'
|
128
129
|
autoload :VPNConnection, 'cloud_former/resources/ec2/vpn_connection'
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html
|
2
|
+
module CloudFormer
|
3
|
+
module EC2
|
4
|
+
class VPCEndpoint < Resource
|
5
|
+
aws_property :policy_document, type: Hash
|
6
|
+
aws_property :route_table_ids, type: String, list: true
|
7
|
+
aws_property :service_name, type: String
|
8
|
+
aws_property :vpc_id, type: String
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
data/lib/cloud_former/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cloud_former
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.12
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aubrey Holland
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-04-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -242,6 +242,7 @@ files:
|
|
242
242
|
- lib/cloud_former/resources/ec2/volume_attachment.rb
|
243
243
|
- lib/cloud_former/resources/ec2/vpc.rb
|
244
244
|
- lib/cloud_former/resources/ec2/vpc_dhcp_options_association.rb
|
245
|
+
- lib/cloud_former/resources/ec2/vpc_endpoint.rb
|
245
246
|
- lib/cloud_former/resources/ec2/vpc_gateway_attachment.rb
|
246
247
|
- lib/cloud_former/resources/ec2/vpc_peering_connection.rb
|
247
248
|
- lib/cloud_former/resources/ec2/vpn_connection.rb
|