mirror of
https://github.com/ansible/awx.git
synced 2026-03-17 08:57:33 -02:30
Fixing issue with lookup plugin not able to load host, user, etc
This commit is contained in:
@@ -32,6 +32,16 @@
|
||||
register: user_creation_results
|
||||
|
||||
- block:
|
||||
- name: Specify the connection params
|
||||
debug:
|
||||
msg: "{{ query(plugin_name, 'ping', host='DNE://junk.com', username='john', password='not_legit', verify_ssl=True) }}"
|
||||
register: results
|
||||
ignore_errors: True
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "'DNE' in results.msg"
|
||||
|
||||
- name: Create our hosts
|
||||
tower_host:
|
||||
name: "{{ item }}"
|
||||
|
||||
Reference in New Issue
Block a user