Merge pull request #1629 from caseylucas/devel
ec2_vpc_subnet: fix edge case where boto returns empty list after subnet creation
This commit is contained in:
commit
aa80e700e5
1 changed files with 1 additions and 1 deletions
|
@ -122,7 +122,7 @@ def get_subnet_info(subnet):
|
|||
def subnet_exists(vpc_conn, subnet_id):
|
||||
filters = {'subnet-id': subnet_id}
|
||||
subnet = vpc_conn.get_all_subnets(filters=filters)
|
||||
if subnet[0].state == "available":
|
||||
if subnet and subnet[0].state == "available":
|
||||
return subnet[0]
|
||||
else:
|
||||
return False
|
||||
|
|
Loading…
Reference in a new issue