mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
adding for loop on list to to handle the return of none when the list is empty. With the previous method if the list was empty the script died. See http://stackoverflow.com/questions/18852324/typeerror-sequence-item-0-expected-string-nonetype-found
This commit is contained in:
parent
57d2622c8c
commit
4755bde28d
1 changed files with 2 additions and 2 deletions
|
@ -622,8 +622,8 @@ class Ec2Inventory(object):
|
||||||
for group in value:
|
for group in value:
|
||||||
group_ids.append(group.id)
|
group_ids.append(group.id)
|
||||||
group_names.append(group.name)
|
group_names.append(group.name)
|
||||||
instance_vars["ec2_security_group_ids"] = ','.join(group_ids)
|
instance_vars["ec2_security_group_ids"] = ','.join([str(i) for i in group_ids])
|
||||||
instance_vars["ec2_security_group_names"] = ','.join(group_names)
|
instance_vars["ec2_security_group_names"] = ','.join([str(i) for i in group_names])
|
||||||
else:
|
else:
|
||||||
pass
|
pass
|
||||||
# TODO Product codes if someone finds them useful
|
# TODO Product codes if someone finds them useful
|
||||||
|
|
Loading…
Reference in a new issue