|
|
|
@ -113,7 +113,7 @@ class AnsibleTagCreationException(AnsibleVPCSubnetException):
|
|
|
|
|
|
|
|
|
|
def get_subnet_info(subnet):
|
|
|
|
|
|
|
|
|
|
subnet_info = { 'id': subnet.id,
|
|
|
|
|
subnet_info = {'id': subnet.id,
|
|
|
|
|
'availability_zone': subnet.availability_zone,
|
|
|
|
|
'available_ip_address_count': subnet.available_ip_address_count,
|
|
|
|
|
'cidr_block': subnet.cidr_block,
|
|
|
|
@ -126,6 +126,7 @@ def get_subnet_info(subnet):
|
|
|
|
|
|
|
|
|
|
return subnet_info
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def subnet_exists(vpc_conn, subnet_id):
|
|
|
|
|
filters = {'subnet-id': subnet_id}
|
|
|
|
|
subnet = vpc_conn.get_all_subnets(filters=filters)
|
|
|
|
@ -149,6 +150,8 @@ def create_subnet(vpc_conn, vpc_id, cidr, az, check_mode):
|
|
|
|
|
except EC2ResponseError as e:
|
|
|
|
|
if e.error_code == "DryRunOperation":
|
|
|
|
|
subnet = None
|
|
|
|
|
elif e.error_code == "InvalidSubnet.Conflict":
|
|
|
|
|
raise AnsibleVPCSubnetCreationException("%s: the CIDR %s conflicts with another subnet with the VPC ID %s." % (e.error_code, cidr, vpc_id))
|
|
|
|
|
else:
|
|
|
|
|
raise AnsibleVPCSubnetCreationException(
|
|
|
|
|
'Unable to create subnet {0}, error: {1}'.format(cidr, e))
|
|
|
|
@ -231,11 +234,11 @@ def main():
|
|
|
|
|
argument_spec = ec2_argument_spec()
|
|
|
|
|
argument_spec.update(
|
|
|
|
|
dict(
|
|
|
|
|
az = dict(default=None, required=False),
|
|
|
|
|
cidr = dict(default=None, required=True),
|
|
|
|
|
state = dict(default='present', choices=['present', 'absent']),
|
|
|
|
|
tags = dict(default={}, required=False, type='dict', aliases=['resource_tags']),
|
|
|
|
|
vpc_id = dict(default=None, required=True)
|
|
|
|
|
az=dict(default=None, required=False),
|
|
|
|
|
cidr=dict(default=None, required=True),
|
|
|
|
|
state=dict(default='present', choices=['present', 'absent']),
|
|
|
|
|
tags=dict(default={}, required=False, type='dict', aliases=['resource_tags']),
|
|
|
|
|
vpc_id=dict(default=None, required=True)
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|