3
0
mirror of https://github.com/spantaleev/matrix-docker-ansible-deploy.git synced 2026-01-17 13:25:19 +00:00

delegate delete tasks locally

This commit is contained in:
Michael Collins
2021-08-20 09:35:12 +08:00
parent 312bcc444b
commit 14effd5e2b
4 changed files with 40 additions and 2 deletions

View File

@@ -1,14 +1,22 @@
- name: Include matrix server variables from matrix_vars.yml
delegate_to: 127.0.0.1
include_vars: "{{ item }}"
with_first_found:
- files:
- /var/lib/awx/projects/clients/{{ member_id }}/{{ subscription_id }}/matrix_vars.yml
skip: true
no_log: True
- name: Install curl in AWX
delegate_to: 127.0.0.1
yum:
name: curl
state: latest
- name: Delete MailGun SMTP login
delegate_to: 127.0.0.1
shell: |
curl -s --user 'api:{{ mg_private_api_key }}' -X DELETE https://{{ mg_api_url }}/v3/domains/{{ mg_sender_domain }}/credentials/{{ matrix_domain }}
when: matrix_domain is defined
# no_log: True
no_log: True