2013-08-07 21:38:19 +02:00
|
|
|
#!/usr/bin/python
|
|
|
|
DOCUMENTATION = '''
|
|
|
|
---
|
|
|
|
module: ec2_eip
|
2013-10-01 22:58:35 +02:00
|
|
|
short_description: associate an EC2 elastic IP with an instance.
|
2013-08-07 21:38:19 +02:00
|
|
|
description:
|
|
|
|
- This module associates AWS EC2 elastic IP addresses with instances
|
2013-09-21 08:06:34 +02:00
|
|
|
version_added: 1.4
|
2013-08-07 21:38:19 +02:00
|
|
|
options:
|
|
|
|
instance_id:
|
|
|
|
description:
|
|
|
|
- The EC2 instance id
|
2013-09-13 03:11:24 +02:00
|
|
|
required: false
|
2013-08-07 21:38:19 +02:00
|
|
|
public_ip:
|
|
|
|
description:
|
2013-09-13 03:11:24 +02:00
|
|
|
- The elastic IP address to associate with the instance.
|
|
|
|
- If absent, allocate a new address
|
|
|
|
required: false
|
2013-08-07 21:38:19 +02:00
|
|
|
state:
|
|
|
|
description:
|
|
|
|
- If present, associate the IP with the instance.
|
|
|
|
- If absent, disassociate the IP with the instance.
|
|
|
|
required: false
|
|
|
|
choices: ['present', 'absent']
|
|
|
|
default: present
|
|
|
|
region:
|
|
|
|
description:
|
|
|
|
- the EC2 region to use
|
|
|
|
required: false
|
|
|
|
default: null
|
|
|
|
aliases: [ ec2_region ]
|
2013-10-18 23:34:17 +02:00
|
|
|
in_vpc:
|
|
|
|
description:
|
|
|
|
- allocate an EIP inside a VPC or not
|
|
|
|
required: false
|
|
|
|
default: false
|
2013-10-24 18:19:43 +02:00
|
|
|
version_added: "1.4"
|
2014-03-11 17:12:23 +01:00
|
|
|
reuse_existing_ip_allowed:
|
2013-11-15 10:14:13 +01:00
|
|
|
description:
|
|
|
|
- Reuse an EIP that is not associated to an instance (when available), instead of allocating a new one.
|
|
|
|
required: false
|
|
|
|
default: false
|
2014-03-11 17:12:23 +01:00
|
|
|
version_added: "1.6"
|
2014-07-29 08:59:11 +02:00
|
|
|
wait_timeout:
|
|
|
|
description:
|
|
|
|
- how long to wait in seconds for newly provisioned EIPs to become available
|
|
|
|
default: 300
|
|
|
|
version_added: "1.7"
|
2014-02-13 19:12:08 +01:00
|
|
|
|
2014-04-09 08:43:55 +02:00
|
|
|
extends_documentation_fragment: aws
|
2013-08-07 21:38:19 +02:00
|
|
|
author: Lorin Hochstein <lorin@nimbisservices.com>
|
2013-09-13 03:11:24 +02:00
|
|
|
notes:
|
|
|
|
- This module will return C(public_ip) on success, which will contain the
|
|
|
|
public IP address associated with the instance.
|
2013-10-01 23:50:06 +02:00
|
|
|
- There may be a delay between the time the Elastic IP is assigned and when
|
|
|
|
the cloud instance is reachable via the new address. Use wait_for and pause
|
|
|
|
to delay further playbook execution until the instance is reachable, if
|
|
|
|
necessary.
|
2013-08-07 21:38:19 +02:00
|
|
|
'''
|
|
|
|
|
|
|
|
EXAMPLES = '''
|
2013-09-13 03:11:24 +02:00
|
|
|
- name: associate an elastic IP with an instance
|
|
|
|
ec2_eip: instance_id=i-1212f003 ip=93.184.216.119
|
|
|
|
|
|
|
|
- name: disassociate an elastic IP from an instance
|
|
|
|
ec2_eip: instance_id=i-1212f003 ip=93.184.216.119 state=absent
|
|
|
|
|
|
|
|
- name: allocate a new elastic IP and associate it with an instance
|
|
|
|
ec2_eip: instance_id=i-1212f003
|
|
|
|
|
|
|
|
- name: allocate a new elastic IP without associating it to anything
|
|
|
|
ec2_eip:
|
|
|
|
register: eip
|
|
|
|
- name: output the IP
|
|
|
|
debug: msg="Allocated IP is {{ eip.public_ip }}"
|
|
|
|
|
|
|
|
- name: provision new instances with ec2
|
|
|
|
ec2: keypair=mykey instance_type=c1.medium image=emi-40603AD1 wait=yes group=webserver count=3
|
|
|
|
register: ec2
|
|
|
|
- name: associate new elastic IPs with each of the instances
|
|
|
|
ec2_eip: "instance_id={{ item }}"
|
|
|
|
with_items: ec2.instance_ids
|
2013-08-07 21:38:19 +02:00
|
|
|
|
2013-10-18 23:34:17 +02:00
|
|
|
- name: allocate a new elastic IP inside a VPC in us-west-2
|
|
|
|
ec2_eip: region=us-west-2 in_vpc=yes
|
|
|
|
register: eip
|
|
|
|
- name: output the IP
|
|
|
|
debug: msg="Allocated IP inside a VPC is {{ eip.public_ip }}"
|
2013-08-07 21:38:19 +02:00
|
|
|
'''
|
|
|
|
|
|
|
|
try:
|
|
|
|
import boto.ec2
|
|
|
|
except ImportError:
|
|
|
|
boto_found = False
|
|
|
|
else:
|
|
|
|
boto_found = True
|
|
|
|
|
|
|
|
|
2014-07-29 08:59:11 +02:00
|
|
|
wait_timeout = 0
|
|
|
|
|
2013-10-18 23:34:17 +02:00
|
|
|
def associate_ip_and_instance(ec2, address, instance_id, module):
|
|
|
|
if ip_is_associated_with_instance(ec2, address.public_ip, instance_id, module):
|
|
|
|
module.exit_json(changed=False, public_ip=address.public_ip)
|
2013-08-07 21:38:19 +02:00
|
|
|
|
|
|
|
# If we're in check mode, nothing else to do
|
|
|
|
if module.check_mode:
|
|
|
|
module.exit_json(changed=True)
|
|
|
|
|
2013-10-18 23:34:17 +02:00
|
|
|
try:
|
|
|
|
if address.domain == "vpc":
|
|
|
|
res = ec2.associate_address(instance_id, allocation_id=address.allocation_id)
|
|
|
|
else:
|
|
|
|
res = ec2.associate_address(instance_id, public_ip=address.public_ip)
|
|
|
|
except boto.exception.EC2ResponseError, e:
|
|
|
|
module.fail_json(msg=str(e))
|
|
|
|
|
2013-08-07 21:38:19 +02:00
|
|
|
if res:
|
2013-10-18 23:34:17 +02:00
|
|
|
module.exit_json(changed=True, public_ip=address.public_ip)
|
2013-08-07 21:38:19 +02:00
|
|
|
else:
|
|
|
|
module.fail_json(msg="association failed")
|
|
|
|
|
|
|
|
|
2013-10-19 00:12:49 +02:00
|
|
|
def disassociate_ip_and_instance(ec2, address, instance_id, module):
|
|
|
|
if not ip_is_associated_with_instance(ec2, address.public_ip, instance_id, module):
|
|
|
|
module.exit_json(changed=False, public_ip=address.public_ip)
|
2013-08-07 21:38:19 +02:00
|
|
|
|
|
|
|
# If we're in check mode, nothing else to do
|
|
|
|
if module.check_mode:
|
|
|
|
module.exit_json(changed=True)
|
|
|
|
|
2013-10-19 00:12:49 +02:00
|
|
|
try:
|
|
|
|
if address.domain == "vpc":
|
|
|
|
res = ec2.disassociate_address(association_id=address.association_id)
|
|
|
|
else:
|
|
|
|
res = ec2.disassociate_address(public_ip=address.public_ip)
|
|
|
|
except boto.exception.EC2ResponseError, e:
|
|
|
|
module.fail_json(msg=str(e))
|
|
|
|
|
2013-08-07 21:38:19 +02:00
|
|
|
if res:
|
|
|
|
module.exit_json(changed=True)
|
|
|
|
else:
|
|
|
|
module.fail_json(msg="disassociation failed")
|
|
|
|
|
|
|
|
|
2013-10-18 23:34:17 +02:00
|
|
|
def find_address(ec2, public_ip, module):
|
2014-07-29 08:59:11 +02:00
|
|
|
""" Find an existing Elastic IP address """
|
|
|
|
if wait_timeout != 0:
|
|
|
|
timeout = time.time() + wait_timeout
|
|
|
|
while timeout > time.time():
|
|
|
|
try:
|
|
|
|
addresses = ec2.get_all_addresses([public_ip])
|
|
|
|
break
|
|
|
|
except boto.exception.EC2ResponseError, e:
|
|
|
|
if "Address '%s' not found." % public_ip in e.message :
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
module.fail_json(msg=str(e.message))
|
|
|
|
time.sleep(5)
|
|
|
|
|
|
|
|
if timeout <= time.time():
|
|
|
|
module.fail_json(msg = "wait for EIPs timeout on %s" % time.asctime())
|
|
|
|
else:
|
2014-07-25 16:56:25 +02:00
|
|
|
try:
|
2014-07-25 19:41:25 +02:00
|
|
|
addresses = ec2.get_all_addresses([public_ip])
|
2014-07-25 16:56:25 +02:00
|
|
|
except boto.exception.EC2ResponseError, e:
|
2014-07-29 08:59:11 +02:00
|
|
|
module.fail_json(msg=str(e.message))
|
2014-07-25 16:56:25 +02:00
|
|
|
|
2013-10-18 23:34:17 +02:00
|
|
|
return addresses[0]
|
|
|
|
|
|
|
|
|
|
|
|
def ip_is_associated_with_instance(ec2, public_ip, instance_id, module):
|
2013-08-07 21:38:19 +02:00
|
|
|
""" Check if the elastic IP is currently associated with the instance """
|
2013-10-18 23:34:17 +02:00
|
|
|
address = find_address(ec2, public_ip, module)
|
|
|
|
if address:
|
|
|
|
return address.instance_id == instance_id
|
2013-08-07 21:38:19 +02:00
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
2013-09-13 03:11:24 +02:00
|
|
|
|
2014-03-11 17:12:23 +01:00
|
|
|
def allocate_address(ec2, domain, module, reuse_existing_ip_allowed):
|
2013-11-15 10:14:13 +01:00
|
|
|
""" Allocate a new elastic IP address (when needed) and return it """
|
2013-09-13 03:11:24 +02:00
|
|
|
# If we're in check mode, nothing else to do
|
|
|
|
if module.check_mode:
|
|
|
|
module.exit_json(change=True)
|
|
|
|
|
2014-03-11 17:12:23 +01:00
|
|
|
if reuse_existing_ip_allowed:
|
2013-11-15 10:14:13 +01:00
|
|
|
if domain:
|
|
|
|
domain_filter = { 'domain' : domain }
|
|
|
|
else:
|
|
|
|
domain_filter = { 'domain' : 'standard' }
|
|
|
|
all_addresses = ec2.get_all_addresses(filters=domain_filter)
|
|
|
|
|
2014-08-08 16:42:40 +02:00
|
|
|
unassociated_addresses = filter(lambda a: a.instance_id == "", all_addresses)
|
2013-11-15 10:14:13 +01:00
|
|
|
if unassociated_addresses:
|
|
|
|
address = unassociated_addresses[0];
|
|
|
|
else:
|
|
|
|
address = ec2.allocate_address(domain=domain)
|
|
|
|
else:
|
|
|
|
address = ec2.allocate_address(domain=domain)
|
|
|
|
|
2013-10-18 23:34:17 +02:00
|
|
|
return address
|
2013-09-13 03:11:24 +02:00
|
|
|
|
|
|
|
|
2013-10-18 23:34:17 +02:00
|
|
|
def release_address(ec2, public_ip, module):
|
|
|
|
""" Release a previously allocated elastic IP address """
|
|
|
|
|
|
|
|
address = find_address(ec2, public_ip, module)
|
|
|
|
|
|
|
|
# If we're in check mode, nothing else to do
|
|
|
|
if module.check_mode:
|
|
|
|
module.exit_json(change=True)
|
|
|
|
|
|
|
|
res = address.release()
|
|
|
|
if res:
|
|
|
|
module.exit_json(changed=True)
|
|
|
|
else:
|
|
|
|
module.fail_json(msg="release failed")
|
|
|
|
|
|
|
|
|
|
|
|
def find_instance(ec2, instance_id, module):
|
|
|
|
""" Attempt to find the EC2 instance and return it """
|
|
|
|
|
|
|
|
try:
|
|
|
|
reservations = ec2.get_all_reservations(instance_ids=[instance_id])
|
|
|
|
except boto.exception.EC2ResponseError, e:
|
|
|
|
module.fail_json(msg=str(e))
|
|
|
|
|
|
|
|
if len(reservations) == 1:
|
|
|
|
instances = reservations[0].instances
|
|
|
|
if len(instances) == 1:
|
|
|
|
return instances[0]
|
|
|
|
|
|
|
|
module.fail_json(msg="could not find instance" + instance_id)
|
|
|
|
|
|
|
|
|
2013-08-07 21:38:19 +02:00
|
|
|
def main():
|
2014-02-05 12:11:06 +01:00
|
|
|
argument_spec = ec2_argument_spec()
|
|
|
|
argument_spec.update(dict(
|
2013-09-13 03:11:24 +02:00
|
|
|
instance_id = dict(required=False),
|
2013-09-21 07:45:27 +02:00
|
|
|
public_ip = dict(required=False, aliases= ['ip']),
|
2013-08-07 21:38:19 +02:00
|
|
|
state = dict(required=False, default='present',
|
|
|
|
choices=['present', 'absent']),
|
2014-03-11 21:44:34 +01:00
|
|
|
in_vpc = dict(required=False, type='bool', default=False),
|
2014-03-11 17:12:23 +01:00
|
|
|
reuse_existing_ip_allowed = dict(required=False, type='bool', default=False),
|
2014-07-29 08:59:11 +02:00
|
|
|
wait_timeout = dict(default=300),
|
2014-02-05 12:11:06 +01:00
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
module = AnsibleModule(
|
|
|
|
argument_spec=argument_spec,
|
2013-08-07 21:38:19 +02:00
|
|
|
supports_check_mode=True
|
|
|
|
)
|
|
|
|
|
|
|
|
if not boto_found:
|
|
|
|
module.fail_json(msg="boto is required")
|
|
|
|
|
2013-12-17 03:04:12 +01:00
|
|
|
ec2 = ec2_connect(module)
|
2013-08-07 21:38:19 +02:00
|
|
|
|
|
|
|
instance_id = module.params.get('instance_id')
|
|
|
|
public_ip = module.params.get('public_ip')
|
|
|
|
state = module.params.get('state')
|
2013-10-18 23:34:17 +02:00
|
|
|
in_vpc = module.params.get('in_vpc')
|
|
|
|
domain = "vpc" if in_vpc else None
|
2014-07-29 08:59:11 +02:00
|
|
|
reuse_existing_ip_allowed = module.params.get('reuse_existing_ip_allowed')
|
|
|
|
new_eip_timeout = int(module.params.get('wait_timeout'))
|
2013-08-07 21:38:19 +02:00
|
|
|
|
|
|
|
if state == 'present':
|
2014-07-29 08:59:11 +02:00
|
|
|
# Allocate an EIP and exit
|
|
|
|
if not instance_id and not public_ip:
|
|
|
|
address = allocate_address(ec2, domain, module, reuse_existing_ip_allowed)
|
|
|
|
module.exit_json(changed=True, public_ip=address.public_ip)
|
|
|
|
|
|
|
|
# Return the EIP object since we've been given a public IP
|
|
|
|
if public_ip:
|
2013-10-18 23:34:17 +02:00
|
|
|
address = find_address(ec2, public_ip, module)
|
2014-07-29 08:59:11 +02:00
|
|
|
|
|
|
|
# Allocate an IP for instance since no public_ip was provided
|
|
|
|
if instance_id and not public_ip:
|
|
|
|
instance = find_instance(ec2, instance_id, module)
|
|
|
|
if instance.vpc_id:
|
|
|
|
domain = "vpc"
|
|
|
|
address = allocate_address(ec2, domain, module, reuse_existing_ip_allowed)
|
|
|
|
# overriding the timeout since this is a a newly provisioned ip
|
|
|
|
global wait_timeout
|
|
|
|
wait_timeout = new_eip_timeout
|
|
|
|
|
|
|
|
# Associate address object (provided or allocated) with instance
|
2013-10-18 23:34:17 +02:00
|
|
|
associate_ip_and_instance(ec2, address, instance_id, module)
|
2014-07-29 08:59:11 +02:00
|
|
|
|
2013-08-07 21:38:19 +02:00
|
|
|
else:
|
2014-07-29 08:59:11 +02:00
|
|
|
#disassociating address from instance
|
|
|
|
if instance_id:
|
2013-10-19 00:12:49 +02:00
|
|
|
address = find_address(ec2, public_ip, module)
|
|
|
|
disassociate_ip_and_instance(ec2, address, instance_id, module)
|
2014-07-29 08:59:11 +02:00
|
|
|
#releasing address
|
|
|
|
else:
|
|
|
|
release_address(ec2, public_ip, module)
|
2013-08-07 21:38:19 +02:00
|
|
|
|
|
|
|
|
2013-11-01 16:59:24 +01:00
|
|
|
# import module snippets
|
|
|
|
from ansible.module_utils.basic import *
|
|
|
|
from ansible.module_utils.ec2 import *
|
2013-08-07 21:38:19 +02:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|