Initial fixes from github comments

This commit is contained in:
John Westcott IV
2020-06-10 14:54:19 -04:00
parent 3c02265986
commit 44a3057d16
3 changed files with 9 additions and 18 deletions

View File

@@ -30,13 +30,13 @@ options:
EXAMPLES = """
- name: Lookup a users ID
debug:
msg: "{{ query('awx.awx.tower_api', 'users', query_params={ 'username': 'admin' }) }}"
msg: "{{ query('awx.awx.tower_get_id', 'users', query_params={ 'username': 'admin' }) }}"
"""
RETURN = """
_raw:
description:
- The ID found for the filter criteria
- The ID found for the filter criteria returned as a string (i.e. "42" instead of 42).
type: str
"""