mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-07 19:27:35 +01:00
10 lines
356 B
YAML
10 lines
356 B
YAML
|
|
||
|
- name: Delete the AWX session token for executing modules
|
||
|
awx.awx.tower_token:
|
||
|
description: 'AWX Session Token'
|
||
|
scope: "write"
|
||
|
state: absent
|
||
|
existing_token_id: "{{ awx_session_token.ansible_facts.tower_token.id }}"
|
||
|
tower_host: "https://{{ awx_host }}"
|
||
|
tower_oauthtoken: "{{ awx_session_token.ansible_facts.tower_token.token }}"
|