You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
274 B
10 lines
274 B
3 years ago
|
|
||
|
- name: Create a AWX session token for executing modules
|
||
|
awx.awx.tower_token:
|
||
|
description: 'AWX Session Token'
|
||
|
scope: "write"
|
||
|
state: present
|
||
|
tower_host: "https://{{ awx_host }}"
|
||
|
tower_oauthtoken: "{{ awx_master_token }}"
|
||
|
register: awx_session_token
|