Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
adb00b94
Commit
adb00b94
authored
Aug 26, 2014
by
James Cammarata
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'elb-enhancements' of
https://github.com/dataxu/ansible
into dataxu-elb-enhancements
parents
d1d33940
16e61dc3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
77 additions
and
4 deletions
+77
-4
library/cloud/ec2_elb_lb
+77
-4
No files found.
library/cloud/ec2_elb_lb
View file @
adb00b94
...
@@ -93,6 +93,20 @@ options:
...
@@ -93,6 +93,20 @@ options:
choices: ["yes", "no"]
choices: ["yes", "no"]
aliases: []
aliases: []
version_added: "1.5"
version_added: "1.5"
connection_draining_timeout:
description:
- Wait a specified timeout allowing connections to drain before terminating an instance
required: false
aliases: []
version_added: "1.7"
cross_az_load_balancing:
description:
- Distribute load across all configured Availablity Zones
required: false
default: "no"
choices: ["yes", "no"]
aliases: []
version_added: "1.7"
extends_documentation_fragment: aws
extends_documentation_fragment: aws
"""
"""
...
@@ -206,6 +220,23 @@ EXAMPLES = """
...
@@ -206,6 +220,23 @@ EXAMPLES = """
- protocol: http
- protocol: http
load_balancer_port: 80
load_balancer_port: 80
instance_port: 80
instance_port: 80
# Create an ELB with connection draining and cross availability
# zone load balancing
- local_action:
module: ec2_elb_lb
name: "New ELB"
state: present
connection_draining_timeout: 60
cross_az_load_balancing: "yes"
region: us-east-1
zones:
- us-east-1a
- us-east-1d
listeners:
- protocols: http
- load_balancer_port: 80
- instance_port: 80
"""
"""
import
sys
import
sys
...
@@ -214,6 +245,7 @@ import os
...
@@ -214,6 +245,7 @@ import os
try
:
try
:
import
boto
import
boto
import
boto.ec2.elb
import
boto.ec2.elb
import
boto.ec2.elb.attributes
from
boto.ec2.elb.healthcheck
import
HealthCheck
from
boto.ec2.elb.healthcheck
import
HealthCheck
from
boto.regioninfo
import
RegionInfo
from
boto.regioninfo
import
RegionInfo
except
ImportError
:
except
ImportError
:
...
@@ -227,7 +259,8 @@ class ElbManager(object):
...
@@ -227,7 +259,8 @@ class ElbManager(object):
def
__init__
(
self
,
module
,
name
,
listeners
=
None
,
purge_listeners
=
None
,
def
__init__
(
self
,
module
,
name
,
listeners
=
None
,
purge_listeners
=
None
,
zones
=
None
,
purge_zones
=
None
,
security_group_ids
=
None
,
zones
=
None
,
purge_zones
=
None
,
security_group_ids
=
None
,
health_check
=
None
,
subnets
=
None
,
purge_subnets
=
None
,
health_check
=
None
,
subnets
=
None
,
purge_subnets
=
None
,
scheme
=
"internet-facing"
,
region
=
None
,
**
aws_connect_params
):
scheme
=
"internet-facing"
,
connection_draining_timeout
=
None
,
cross_az_load_balancing
=
None
,
region
=
None
,
**
aws_connect_params
):
self
.
module
=
module
self
.
module
=
module
self
.
name
=
name
self
.
name
=
name
...
@@ -240,6 +273,8 @@ class ElbManager(object):
...
@@ -240,6 +273,8 @@ class ElbManager(object):
self
.
subnets
=
subnets
self
.
subnets
=
subnets
self
.
purge_subnets
=
purge_subnets
self
.
purge_subnets
=
purge_subnets
self
.
scheme
=
scheme
self
.
scheme
=
scheme
self
.
connection_draining_timeout
=
connection_draining_timeout
self
.
cross_az_load_balancing
=
cross_az_load_balancing
self
.
aws_connect_params
=
aws_connect_params
self
.
aws_connect_params
=
aws_connect_params
self
.
region
=
region
self
.
region
=
region
...
@@ -260,6 +295,8 @@ class ElbManager(object):
...
@@ -260,6 +295,8 @@ class ElbManager(object):
self
.
_set_elb_listeners
()
self
.
_set_elb_listeners
()
self
.
_set_subnets
()
self
.
_set_subnets
()
self
.
_set_health_check
()
self
.
_set_health_check
()
self
.
_set_connection_draining_timeout
()
self
.
_set_cross_az_load_balancing
()
def
ensure_gone
(
self
):
def
ensure_gone
(
self
):
"""Destroy the ELB"""
"""Destroy the ELB"""
...
@@ -308,6 +345,18 @@ class ElbManager(object):
...
@@ -308,6 +345,18 @@ class ElbManager(object):
for
l
in
self
.
listeners
]
for
l
in
self
.
listeners
]
else
:
else
:
info
[
'listeners'
]
=
[]
info
[
'listeners'
]
=
[]
info
[
'connection_draining_timeout'
]
=
self
.
elb_conn
.
get_lb_attribute
(
self
.
name
,
'ConnectionDraining'
)
.
timeout
is_cross_az_lb_enabled
=
self
.
elb_conn
.
get_lb_attribute
(
self
.
name
,
'CrossZoneLoadBalancing'
)
if
is_cross_az_lb_enabled
:
info
[
'cross_az_load_balancing'
]
=
'yes'
else
:
info
[
'cross_az_load_balancing'
]
=
'no'
return
info
return
info
def
_get_elb
(
self
):
def
_get_elb
(
self
):
...
@@ -533,6 +582,25 @@ class ElbManager(object):
...
@@ -533,6 +582,25 @@ class ElbManager(object):
self
.
elb
.
configure_health_check
(
self
.
elb
.
health_check
)
self
.
elb
.
configure_health_check
(
self
.
elb
.
health_check
)
self
.
changed
=
True
self
.
changed
=
True
def
_set_cross_az_load_balancing
(
self
):
attributes
=
self
.
elb
.
get_attributes
()
if
self
.
cross_az_load_balancing
==
'yes'
:
attributes
.
cross_zone_load_balancing
.
enabled
=
True
else
:
attributes
.
cross_zone_load_balancing
.
enabled
=
False
self
.
elb_conn
.
modify_lb_attribute
(
self
.
name
,
'CrossZoneLoadBalancing'
,
attributes
.
cross_zone_load_balancing
.
enabled
)
def
_set_connection_draining_timeout
(
self
):
attributes
=
self
.
elb
.
get_attributes
()
if
self
.
connection_draining_timeout
is
not
None
:
attributes
.
connection_draining
.
enabled
=
True
attributes
.
connection_draining
.
timeout
=
self
.
connection_draining_timeout
self
.
elb_conn
.
modify_lb_attribute
(
self
.
name
,
'ConnectionDraining'
,
attributes
.
connection_draining
)
else
:
attributes
.
connection_draining
.
enabled
=
False
self
.
elb_conn
.
modify_lb_attribute
(
self
.
name
,
'ConnectionDraining'
,
attributes
.
connection_draining
)
def
_get_health_check_target
(
self
):
def
_get_health_check_target
(
self
):
"""Compose target string from healthcheck parameters"""
"""Compose target string from healthcheck parameters"""
protocol
=
self
.
health_check
[
'ping_protocol'
]
.
upper
()
protocol
=
self
.
health_check
[
'ping_protocol'
]
.
upper
()
...
@@ -557,7 +625,9 @@ def main():
...
@@ -557,7 +625,9 @@ def main():
health_check
=
{
'default'
:
None
,
'required'
:
False
,
'type'
:
'dict'
},
health_check
=
{
'default'
:
None
,
'required'
:
False
,
'type'
:
'dict'
},
subnets
=
{
'default'
:
None
,
'required'
:
False
,
'type'
:
'list'
},
subnets
=
{
'default'
:
None
,
'required'
:
False
,
'type'
:
'list'
},
purge_subnets
=
{
'default'
:
False
,
'required'
:
False
,
'type'
:
'bool'
},
purge_subnets
=
{
'default'
:
False
,
'required'
:
False
,
'type'
:
'bool'
},
scheme
=
{
'default'
:
'internet-facing'
,
'required'
:
False
}
scheme
=
{
'default'
:
'internet-facing'
,
'required'
:
False
},
connection_draining_timeout
=
{
'default'
:
None
,
'required'
:
False
},
cross_az_load_balancing
=
{
'default'
:
None
,
'required'
:
False
}
)
)
)
)
...
@@ -580,6 +650,8 @@ def main():
...
@@ -580,6 +650,8 @@ def main():
subnets
=
module
.
params
[
'subnets'
]
subnets
=
module
.
params
[
'subnets'
]
purge_subnets
=
module
.
params
[
'purge_subnets'
]
purge_subnets
=
module
.
params
[
'purge_subnets'
]
scheme
=
module
.
params
[
'scheme'
]
scheme
=
module
.
params
[
'scheme'
]
connection_draining_timeout
=
module
.
params
[
'connection_draining_timeout'
]
cross_az_load_balancing
=
module
.
params
[
'cross_az_load_balancing'
]
if
state
==
'present'
and
not
listeners
:
if
state
==
'present'
and
not
listeners
:
module
.
fail_json
(
msg
=
"At least one port is required for ELB creation"
)
module
.
fail_json
(
msg
=
"At least one port is required for ELB creation"
)
...
@@ -589,8 +661,9 @@ def main():
...
@@ -589,8 +661,9 @@ def main():
elb_man
=
ElbManager
(
module
,
name
,
listeners
,
purge_listeners
,
zones
,
elb_man
=
ElbManager
(
module
,
name
,
listeners
,
purge_listeners
,
zones
,
purge_zones
,
security_group_ids
,
health_check
,
purge_zones
,
security_group_ids
,
health_check
,
subnets
,
purge_subnets
,
subnets
,
purge_subnets
,
scheme
,
scheme
,
region
=
region
,
**
aws_connect_params
)
connection_draining_timeout
,
cross_az_load_balancing
,
region
=
region
,
**
aws_connect_params
)
if
state
==
'present'
:
if
state
==
'present'
:
elb_man
.
ensure_ok
()
elb_man
.
ensure_ok
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment