matrix-docker-ansible-deploy/roles/matrix-awx/tasks/create_session_token.yml

11 lines
289 B
YAML
Raw Normal View History

- 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
2021-10-02 04:43:14 +00:00
no_log: True