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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dafb0af7c8aff6fd6147da927e742eb24fedd585
4
- data.tar.gz: 8c0e82b1483166fddbb1632097d877cb719f8ac8
3
+ metadata.gz: ca4e0066415458e1b308b34881e13df101730477
4
+ data.tar.gz: 70dc364ad688eb1d51ecb86736c353886930accb
5
5
  SHA512:
6
- metadata.gz: e0309072d9b4bced5a7f2532f2e56f0c3a2aceb92ef173942449ab29204d2c86c8c697a373f24483e35d0c8cf81d698d78e019f8375c4a097714d5e96e437fdc
7
- data.tar.gz: 5e79efce529e8b07b92082e2a056147c3148aa7c4b2bb8b8ecad93419ec708b40fcacf1057812f839aaa8355819bd7a3cdc1d24eca71889d306c5d75356d3696
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
@@ -1,3 +1,3 @@
1
1
  module CloudFormer
2
- VERSION = '0.7.11'
2
+ VERSION = '0.7.12'
3
3
  end
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.11
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-03-28 00:00:00.000000000 Z
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