Fixes regression introduced by edf1ac1ea6

reviewable/pr18780/r1
Bobby Calderwood 10 years ago
parent 89bd6af0ed
commit 98a9f2d5b8

@ -486,14 +486,15 @@ def create_vpc(module, vpc_conn):
'id': sn.id,
})
# Sort subnets by the order they were listed in the play
order = {}
for idx, val in enumerate(subnets):
order[val['cidr']] = idx
# Number of subnets in the play
subnets_in_play = len(subnets)
returned_subnets.sort(key=lambda x: order.get(x['cidr'], subnets_in_play))
if subnets is not None:
# Sort subnets by the order they were listed in the play
order = {}
for idx, val in enumerate(subnets):
order[val['cidr']] = idx
# Number of subnets in the play
subnets_in_play = len(subnets)
returned_subnets.sort(key=lambda x: order.get(x['cidr'], subnets_in_play))
return (vpc_dict, created_vpc_id, returned_subnets, changed)

Loading…
Cancel
Save