Matrix Docker Ansible eploy
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 

15 righe
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