Matrix Docker Ansible eploy
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.
 
 

15 lines
497 B

  1. - name: Include matrix server variables from matrix_vars.yml
  2. include_vars: "{{ item }}"
  3. with_first_found:
  4. - files:
  5. - /var/lib/awx/projects/clients/{{ member_id }}/{{ subscription_id }}/matrix_vars.yml
  6. skip: true
  7. no_log: True
  8. - name: Delete MailGun SMTP login
  9. shell: |
  10. curl -s --user 'api:{{ mg_private_api_key }}' -X DELETE https://{{ mg_api_url }}/v3/domains/{{ mg_sender_domain }}/credentials/{{ matrix_domain }}
  11. when: matrix_domain is defined
  12. no_log: True