Merge branch 'ec2_vpc-multiple-vpcs-support' of git://github.com/alexanderpopov1/ansible into devel
Conflicts: library/cloud/ec2_vpc
This commit is contained in:
commit
be4e728a8e
1 changed files with 84 additions and 39 deletions
117
cloud/ec2_vpc
117
cloud/ec2_vpc
|
@ -56,6 +56,13 @@ options:
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
aliases: []
|
aliases: []
|
||||||
|
resource_tags:
|
||||||
|
description:
|
||||||
|
- A dictionary array of resource tags of the form: { tag1: value1, tag2: value2 }. Tags in this list are used in conjunction with CIDR block to uniquely identify a VPC in lieu of vpc_id. Therefore, if CIDR/Tag combination does not exits, a new VPC will be created. VPC tags not on this list will be ignored.
|
||||||
|
required: false
|
||||||
|
default: null
|
||||||
|
aliases: []
|
||||||
|
version_added: "1.6"
|
||||||
internet_gateway:
|
internet_gateway:
|
||||||
description:
|
description:
|
||||||
- Toggle whether there should be an Internet gateway attached to the VPC
|
- Toggle whether there should be an Internet gateway attached to the VPC
|
||||||
|
@ -127,6 +134,7 @@ EXAMPLES = '''
|
||||||
module: ec2_vpc
|
module: ec2_vpc
|
||||||
state: present
|
state: present
|
||||||
cidr_block: 172.23.0.0/16
|
cidr_block: 172.23.0.0/16
|
||||||
|
resource_tags: { "Environment":"Development" }
|
||||||
region: us-west-2
|
region: us-west-2
|
||||||
# Full creation example with subnets and optional availability zones.
|
# Full creation example with subnets and optional availability zones.
|
||||||
# The absence or presense of subnets deletes or creates them respectively.
|
# The absence or presense of subnets deletes or creates them respectively.
|
||||||
|
@ -134,6 +142,7 @@ EXAMPLES = '''
|
||||||
module: ec2_vpc
|
module: ec2_vpc
|
||||||
state: present
|
state: present
|
||||||
cidr_block: 172.22.0.0/16
|
cidr_block: 172.22.0.0/16
|
||||||
|
resource_tags: { "Environment":"Development" }
|
||||||
subnets:
|
subnets:
|
||||||
- cidr: 172.22.1.0/24
|
- cidr: 172.22.1.0/24
|
||||||
az: us-west-2c
|
az: us-west-2c
|
||||||
|
@ -193,9 +202,54 @@ def get_vpc_info(vpc):
|
||||||
'state': vpc.state,
|
'state': vpc.state,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
def find_vpc(module, vpc_conn, vpc_id=None, cidr=None):
|
||||||
|
"""
|
||||||
|
Finds a VPC that matches a specific id or cidr + tags
|
||||||
|
|
||||||
|
module : AnsibleModule object
|
||||||
|
vpc_conn: authenticated VPCConnection connection object
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
A VPC object that matches either an ID or CIDR and one or more tag values
|
||||||
|
"""
|
||||||
|
|
||||||
|
if vpc_id == None and cidr == None:
|
||||||
|
module.fail_json(
|
||||||
|
msg='You must specify either a vpc id or a cidr block + list of unique tags, aborting'
|
||||||
|
)
|
||||||
|
|
||||||
|
found_vpcs = []
|
||||||
|
|
||||||
|
resource_tags = module.params.get('resource_tags')
|
||||||
|
|
||||||
|
# Check for existing VPC by cidr_block or id
|
||||||
|
if vpc_id is not None:
|
||||||
|
found_vpcs = vpc_conn.get_all_vpcs(None, {'vpc-id': vpc_id, 'state': 'available',})
|
||||||
|
|
||||||
|
else:
|
||||||
|
previous_vpcs = vpc_conn.get_all_vpcs(None, {'cidr': cidr, 'state': 'available'})
|
||||||
|
|
||||||
|
for vpc in previous_vpcs:
|
||||||
|
# Get all tags for each of the found VPCs
|
||||||
|
vpc_tags = dict((t.name, t.value) for t in vpc_conn.get_all_tags(filters={'resource-id': vpc.id}))
|
||||||
|
|
||||||
|
# If the supplied list of ID Tags match a subset of the VPC Tags, we found our VPC
|
||||||
|
if set(resource_tags.items()).issubset(set(vpc_tags.items())):
|
||||||
|
found_vpcs.append(vpc)
|
||||||
|
|
||||||
|
found_vpc = None
|
||||||
|
|
||||||
|
if len(found_vpcs) == 1:
|
||||||
|
found_vpc = found_vpcs[0]
|
||||||
|
|
||||||
|
if len(found_vpcs) > 1:
|
||||||
|
module.fail_json(msg='Found more than one vpc based on the supplied criteria, aborting')
|
||||||
|
|
||||||
|
return (found_vpc)
|
||||||
|
|
||||||
def create_vpc(module, vpc_conn):
|
def create_vpc(module, vpc_conn):
|
||||||
"""
|
"""
|
||||||
Creates a new VPC
|
Creates a new or modifies an existing VPC.
|
||||||
|
|
||||||
module : AnsibleModule object
|
module : AnsibleModule object
|
||||||
vpc_conn: authenticated VPCConnection connection object
|
vpc_conn: authenticated VPCConnection connection object
|
||||||
|
@ -217,20 +271,12 @@ def create_vpc(module, vpc_conn):
|
||||||
wait_timeout = int(module.params.get('wait_timeout'))
|
wait_timeout = int(module.params.get('wait_timeout'))
|
||||||
changed = False
|
changed = False
|
||||||
|
|
||||||
# Check for existing VPC by cidr_block or id
|
# Check for existing VPC by cidr_block + tags or id
|
||||||
if id != None:
|
previous_vpc = find_vpc(module, vpc_conn, id, cidr_block)
|
||||||
filter_dict = {'vpc-id':id, 'state': 'available',}
|
|
||||||
previous_vpcs = vpc_conn.get_all_vpcs(None, filter_dict)
|
|
||||||
else:
|
|
||||||
filter_dict = {'cidr': cidr_block, 'state': 'available'}
|
|
||||||
previous_vpcs = vpc_conn.get_all_vpcs(None, filter_dict)
|
|
||||||
|
|
||||||
if len(previous_vpcs) > 1:
|
if previous_vpc is not None:
|
||||||
module.fail_json(msg='EC2 returned more than one VPC, aborting')
|
|
||||||
|
|
||||||
if len(previous_vpcs) == 1:
|
|
||||||
changed = False
|
changed = False
|
||||||
vpc = previous_vpcs[0]
|
vpc = previous_vpc
|
||||||
else:
|
else:
|
||||||
changed = True
|
changed = True
|
||||||
try:
|
try:
|
||||||
|
@ -256,6 +302,20 @@ def create_vpc(module, vpc_conn):
|
||||||
|
|
||||||
# Done with base VPC, now change to attributes and features.
|
# Done with base VPC, now change to attributes and features.
|
||||||
|
|
||||||
|
# Add resource tags
|
||||||
|
vpc_spec_tags = module.params.get('resource_tags')
|
||||||
|
vpc_tags = dict((t.name, t.value) for t in vpc_conn.get_all_tags(filters={'resource-id': vpc.id}))
|
||||||
|
|
||||||
|
if not set(vpc_spec_tags.items()).issubset(set(vpc_tags.items())):
|
||||||
|
new_tags = {}
|
||||||
|
|
||||||
|
for (key, value) in set(vpc_spec_tags.items()):
|
||||||
|
if (key, value) not in set(vpc_tags.items()):
|
||||||
|
new_tags[key] = value
|
||||||
|
|
||||||
|
if new_tags:
|
||||||
|
vpc_conn.create_tags(vpc.id, new_tags)
|
||||||
|
|
||||||
|
|
||||||
# boto doesn't appear to have a way to determine the existing
|
# boto doesn't appear to have a way to determine the existing
|
||||||
# value of the dns attributes, so we just set them.
|
# value of the dns attributes, so we just set them.
|
||||||
|
@ -269,6 +329,7 @@ def create_vpc(module, vpc_conn):
|
||||||
module.fail_json(msg='subnets needs to be a list of cidr blocks')
|
module.fail_json(msg='subnets needs to be a list of cidr blocks')
|
||||||
|
|
||||||
current_subnets = vpc_conn.get_all_subnets(filters={ 'vpc_id': vpc.id })
|
current_subnets = vpc_conn.get_all_subnets(filters={ 'vpc_id': vpc.id })
|
||||||
|
|
||||||
# First add all new subnets
|
# First add all new subnets
|
||||||
for subnet in subnets:
|
for subnet in subnets:
|
||||||
add_subnet = True
|
add_subnet = True
|
||||||
|
@ -281,6 +342,7 @@ def create_vpc(module, vpc_conn):
|
||||||
changed = True
|
changed = True
|
||||||
except EC2ResponseError, e:
|
except EC2ResponseError, e:
|
||||||
module.fail_json(msg='Unable to create subnet {0}, error: {1}'.format(subnet['cidr'], e))
|
module.fail_json(msg='Unable to create subnet {0}, error: {1}'.format(subnet['cidr'], e))
|
||||||
|
|
||||||
# Now delete all absent subnets
|
# Now delete all absent subnets
|
||||||
for csubnet in current_subnets:
|
for csubnet in current_subnets:
|
||||||
delete_subnet = True
|
delete_subnet = True
|
||||||
|
@ -350,7 +412,7 @@ def create_vpc(module, vpc_conn):
|
||||||
|
|
||||||
# Associate with subnets
|
# Associate with subnets
|
||||||
for sn in rt['subnets']:
|
for sn in rt['subnets']:
|
||||||
rsn = vpc_conn.get_all_subnets(filters={'cidr': sn})
|
rsn = vpc_conn.get_all_subnets(filters={'cidr': sn, 'vpc_id': vpc.id })
|
||||||
if len(rsn) != 1:
|
if len(rsn) != 1:
|
||||||
module.fail_json(
|
module.fail_json(
|
||||||
msg='The subnet {0} to associate with route_table {1} ' \
|
msg='The subnet {0} to associate with route_table {1} ' \
|
||||||
|
@ -360,7 +422,7 @@ def create_vpc(module, vpc_conn):
|
||||||
|
|
||||||
# Disassociate then associate since we don't have replace
|
# Disassociate then associate since we don't have replace
|
||||||
old_rt = vpc_conn.get_all_route_tables(
|
old_rt = vpc_conn.get_all_route_tables(
|
||||||
filters={'association.subnet_id': rsn.id}
|
filters={'association.subnet_id': rsn.id, 'vpc_id': vpc.id}
|
||||||
)
|
)
|
||||||
if len(old_rt) == 1:
|
if len(old_rt) == 1:
|
||||||
old_rt = old_rt[0]
|
old_rt = old_rt[0]
|
||||||
|
@ -435,22 +497,9 @@ def terminate_vpc(module, vpc_conn, vpc_id=None, cidr=None):
|
||||||
terminated_vpc_id = ''
|
terminated_vpc_id = ''
|
||||||
changed = False
|
changed = False
|
||||||
|
|
||||||
if vpc_id == None and cidr == None:
|
vpc = find_vpc(module, vpc_conn, vpc_id, cidr)
|
||||||
module.fail_json(
|
|
||||||
msg='You must either specify a vpc id or a cidr '\
|
if vpc is not None:
|
||||||
'block to terminate a VPC, aborting'
|
|
||||||
)
|
|
||||||
if vpc_id is not None:
|
|
||||||
vpc_rs = vpc_conn.get_all_vpcs(vpc_id)
|
|
||||||
else:
|
|
||||||
vpc_rs = vpc_conn.get_all_vpcs(filters={'cidr': cidr})
|
|
||||||
if len(vpc_rs) > 1:
|
|
||||||
module.fail_json(
|
|
||||||
msg='EC2 returned more than one VPC for id {0} ' \
|
|
||||||
'or cidr {1}, aborting'.format(vpc_id,vidr)
|
|
||||||
)
|
|
||||||
if len(vpc_rs) == 1:
|
|
||||||
vpc = vpc_rs[0]
|
|
||||||
if vpc.state == 'available':
|
if vpc.state == 'available':
|
||||||
terminated_vpc_id=vpc.id
|
terminated_vpc_id=vpc.id
|
||||||
vpc_dict=get_vpc_info(vpc)
|
vpc_dict=get_vpc_info(vpc)
|
||||||
|
@ -498,6 +547,7 @@ def main():
|
||||||
subnets = dict(type='list'),
|
subnets = dict(type='list'),
|
||||||
vpc_id = dict(),
|
vpc_id = dict(),
|
||||||
internet_gateway = dict(type='bool', default=False),
|
internet_gateway = dict(type='bool', default=False),
|
||||||
|
resource_tags = dict(type='dict'),
|
||||||
route_tables = dict(type='list'),
|
route_tables = dict(type='list'),
|
||||||
state = dict(choices=['present', 'absent'], default='present'),
|
state = dict(choices=['present', 'absent'], default='present'),
|
||||||
)
|
)
|
||||||
|
@ -527,11 +577,6 @@ def main():
|
||||||
if module.params.get('state') == 'absent':
|
if module.params.get('state') == 'absent':
|
||||||
vpc_id = module.params.get('vpc_id')
|
vpc_id = module.params.get('vpc_id')
|
||||||
cidr = module.params.get('cidr_block')
|
cidr = module.params.get('cidr_block')
|
||||||
if vpc_id == None and cidr == None:
|
|
||||||
module.fail_json(
|
|
||||||
msg='You must either specify a vpc id or a cidr '\
|
|
||||||
'block to terminate a VPC, aborting'
|
|
||||||
)
|
|
||||||
(changed, vpc_dict, new_vpc_id) = terminate_vpc(module, vpc_conn, vpc_id, cidr)
|
(changed, vpc_dict, new_vpc_id) = terminate_vpc(module, vpc_conn, vpc_id, cidr)
|
||||||
subnets_changed = None
|
subnets_changed = None
|
||||||
elif module.params.get('state') == 'present':
|
elif module.params.get('state') == 'present':
|
||||||
|
|
Loading…
Reference in a new issue