cloud_former 0.7.8 → 0.7.9

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: 6ec777df81c428f195f0a3ed4f0e0a9c5c947dcc
4
- data.tar.gz: 3c6657ff6e39882688fb66b29bf8708669150540
3
+ metadata.gz: d8b36c4edd3ec67ff0dd12d630a6b373ad5e65ad
4
+ data.tar.gz: 16413b92bcc0fd74f6ee907feada082207b82d4a
5
5
  SHA512:
6
- metadata.gz: bedf33ab3debd70046e901f1220192b1ffe73f99e1819298eb9c148a548217807872d17ce4e5c2c306353e01d4098934137a99afadc6428d795421643612dfaa
7
- data.tar.gz: 3db175e6670d78528511ca78c2ace273449e005566e000146d2036f3b964bb8bfc5ba1de8da3d024dcc0c6d6848081fc82082e2687e6cdc1adb793fd322c18b6
6
+ metadata.gz: c2ee57bb2fc6f21c2a1d5d254c503f6c2f32ff917f1cd71fa5fc3b9b0ba1979cb452471d0ca6fb6ce05dcb1bb2827ee7277324e91295dbc380169ec3aec3005c
7
+ data.tar.gz: cd4093578bd510f3e9c14c5cb41a9db187045739d1a7a50ebeab2aef91fef7951a4d123c3433132a45cc4fda73c6e16490c3462f06d0b88dda9ca7549fe2eb56
@@ -1,4 +1,4 @@
1
- # http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html
1
+ # http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html
2
2
  module CloudFormer
3
3
  module CloudFormation
4
4
  class ResourceTag < ResourceProperty
@@ -0,0 +1,8 @@
1
+ # http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectionsettings.html
2
+ module CloudFormer
3
+ module ElasticLoadBalancing
4
+ class ConnectionSettings < ResourceProperty
5
+ aws_attribute :idle_timeout, type: Integer
6
+ end
7
+ end
8
+ end
@@ -13,6 +13,9 @@ module CloudFormer
13
13
  aws_property :connection_draining_policy,
14
14
  embed: true,
15
15
  type: ConnectionDrainingPolicy
16
+ aws_property :connection_settings,
17
+ embed: true,
18
+ type: ConnectionSettings
16
19
  aws_property :cross_zone, type: Boolean
17
20
  aws_property :health_check, embed: true, type: HealthCheck
18
21
  aws_property :instances, list: true, type: String
@@ -1,3 +1,3 @@
1
1
  module CloudFormer
2
- VERSION = '0.7.8'
2
+ VERSION = '0.7.9'
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.8
4
+ version: 0.7.9
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-13 00:00:00.000000000 Z
11
+ date: 2016-03-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -174,6 +174,7 @@ files:
174
174
  - lib/cloud_former/resource_properties/elastic_load_balancing/access_logging_policy.rb
175
175
  - lib/cloud_former/resource_properties/elastic_load_balancing/app_cookie_stickiness_policy.rb
176
176
  - lib/cloud_former/resource_properties/elastic_load_balancing/connection_draining_policy.rb
177
+ - lib/cloud_former/resource_properties/elastic_load_balancing/connection_settings.rb
177
178
  - lib/cloud_former/resource_properties/elastic_load_balancing/health_check.rb
178
179
  - lib/cloud_former/resource_properties/elastic_load_balancing/lb_cookie_stickiness_policy.rb
179
180
  - lib/cloud_former/resource_properties/elastic_load_balancing/listener.rb