mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
* Proposed fix for issue 19427 * Use string_types and to_text for evaluation, if not on empty dict. * if int, to_text and continue on
This commit is contained in:
parent
5a9562a101
commit
e6d01ff7e3
1 changed files with 8 additions and 0 deletions
|
@ -692,6 +692,10 @@ def get_reservations(module, ec2, vpc, tags=None, state=None, zone=None):
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
# if not a string type, convert and make sure it's a text string
|
||||||
|
if isinstance(tags, int):
|
||||||
|
tags = to_text(tags)
|
||||||
|
|
||||||
# if string, we only care that a tag of that name exists
|
# if string, we only care that a tag of that name exists
|
||||||
if isinstance(tags, str):
|
if isinstance(tags, str):
|
||||||
filters.update({"tag-key": tags})
|
filters.update({"tag-key": tags})
|
||||||
|
@ -710,6 +714,10 @@ def get_reservations(module, ec2, vpc, tags=None, state=None, zone=None):
|
||||||
tags = _set_none_to_blank(tags)
|
tags = _set_none_to_blank(tags)
|
||||||
filters.update(dict(("tag:" + tn, tv) for (tn, tv) in tags.items()))
|
filters.update(dict(("tag:" + tn, tv) for (tn, tv) in tags.items()))
|
||||||
|
|
||||||
|
# lets check to see if the filters dict is empty, if so then stop
|
||||||
|
if not filters:
|
||||||
|
module.fail_json(msg="Filters based on tag is empty => tags: %s" % (tags))
|
||||||
|
|
||||||
if state:
|
if state:
|
||||||
# http://stackoverflow.com/questions/437511/what-are-the-valid-instancestates-for-the-amazon-ec2-api
|
# http://stackoverflow.com/questions/437511/what-are-the-valid-instancestates-for-the-amazon-ec2-api
|
||||||
filters.update({'instance-state-name': state})
|
filters.update({'instance-state-name': state})
|
||||||
|
|
Loading…
Reference in a new issue