cloud_former 0.7.8 → 0.7.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/cloud_former/resource_properties/cloud_formation/resource_tag.rb +1 -1
- data/lib/cloud_former/resource_properties/elastic_load_balancing/connection_settings.rb +8 -0
- data/lib/cloud_former/resources/elastic_load_balancing/load_balancer.rb +3 -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: d8b36c4edd3ec67ff0dd12d630a6b373ad5e65ad
|
4
|
+
data.tar.gz: 16413b92bcc0fd74f6ee907feada082207b82d4a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
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.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-
|
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
|