mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #8773 from mrevilme/ec2_fix_instances_list
Always return a list even if its empty.
This commit is contained in:
commit
21ed2baadf
1 changed files with 1 additions and 1 deletions
|
@ -660,7 +660,7 @@ def enforce_count(module, ec2):
|
|||
|
||||
changed = None
|
||||
checkmode = False
|
||||
instance_dict_array = None
|
||||
instance_dict_array = []
|
||||
changed_instance_ids = None
|
||||
|
||||
if len(instances) == exact_count:
|
||||
|
|
Loading…
Reference in a new issue