diff --git a/roles/matrix-awx/tasks/delete_awx_templates.yml b/roles/matrix-awx/tasks/delete_awx_templates.yml index 81986ef7..faa28921 100755 --- a/roles/matrix-awx/tasks/delete_awx_templates.yml +++ b/roles/matrix-awx/tasks/delete_awx_templates.yml @@ -13,6 +13,7 @@ no_log: True - name: Remove original 'Provision Server' job template + delegate_to: 127.0.0.1 awx.awx.tower_job_template: name: "0 - {{ subscription_id }} - Provision a New Server" job_type: run @@ -24,6 +25,7 @@ validate_certs: yes - name: Remove 'Provision Wireguard Server' job template + delegate_to: 127.0.0.1 awx.awx.tower_job_template: name: "0 - {{ subscription_id }} - Provision Wireguard Server" job_type: run @@ -35,6 +37,7 @@ validate_certs: yes - name: Remove schedule for 'Deploy a New Server' job template + delegate_to: 127.0.0.1 awx.awx.tower_schedule: name: "{{ matrix_domain }} - 0 - Update Server Schedule" enabled: yes @@ -45,6 +48,7 @@ when: matrix_domain is defined - name: Remove 'Backup Server' job template + delegate_to: 127.0.0.1 awx.awx.tower_job_template: name: "{{ matrix_domain }} - 0 - Backup Server" job_type: run @@ -57,6 +61,7 @@ when: matrix_domain is defined - name: Remove 'Export Server' job template + delegate_to: 127.0.0.1 awx.awx.tower_job_template: name: "{{ matrix_domain }} - 0 - Export Server" job_type: run @@ -69,6 +74,7 @@ when: matrix_domain is defined - name: Remove 'Deploy/Update a Server' job template + delegate_to: 127.0.0.1 awx.awx.tower_job_template: name: "{{ matrix_domain }} - 0 - Deploy/Update a Server" job_type: run @@ -81,6 +87,7 @@ when: matrix_domain is defined - name: Remove 'Self-Check' job template + delegate_to: 127.0.0.1 awx.awx.tower_job_template: name: "{{ matrix_domain }} - 0 - Self-Check" job_type: run @@ -93,6 +100,7 @@ when: matrix_domain is defined - name: Remove 'Start/Restart all Services' job template + delegate_to: 127.0.0.1 awx.awx.tower_job_template: name: "{{ matrix_domain }} - 0 - Start/Restart all Services" job_type: run @@ -105,6 +113,7 @@ when: matrix_domain is defined - name: Remove 'Stop all Services' job template + delegate_to: 127.0.0.1 awx.awx.tower_job_template: name: "{{ matrix_domain }} - 0 - Stop all Services" job_type: run @@ -117,6 +126,7 @@ when: matrix_domain is defined - name: Remove 'Configure Corporal (Advanced)' job template + delegate_to: 127.0.0.1 awx.awx.tower_job_template: name: "{{ matrix_domain }} - 1 - Configure Corporal (Advanced)" job_type: run @@ -129,6 +139,7 @@ when: matrix_domain is defined - name: Remove 'Configure Dimension' job template + delegate_to: 127.0.0.1 awx.awx.tower_job_template: name: "{{ matrix_domain }} - 1 - Configure Dimension" job_type: run @@ -141,6 +152,7 @@ when: matrix_domain is defined - name: Remove 'Configure Element' job template + delegate_to: 127.0.0.1 awx.awx.tower_job_template: name: "{{ matrix_domain }} - 1 - Configure Element" job_type: run @@ -153,6 +165,7 @@ when: matrix_domain is defined - name: Remove 'Configure Element Subdomain' job template + delegate_to: 127.0.0.1 awx.awx.tower_job_template: name: "{{ matrix_domain }} - 1 - Configure Element Subdomain" job_type: run @@ -165,6 +178,7 @@ when: matrix_domain is defined - name: Remove 'Configure Email Relay' job template + delegate_to: 127.0.0.1 awx.awx.tower_job_template: name: "{{ matrix_domain }} - 1 - Configure Email Relay" job_type: run @@ -177,6 +191,7 @@ when: matrix_domain is defined - name: Remove 'Configure Jitsi' job template + delegate_to: 127.0.0.1 awx.awx.tower_job_template: name: "{{ matrix_domain }} - 1 - Configure Jitsi" job_type: run @@ -189,6 +204,7 @@ when: matrix_domain is defined - name: Remove 'Configure ma1sd (Advanced)' job template + delegate_to: 127.0.0.1 awx.awx.tower_job_template: name: "{{ matrix_domain }} - 1 - Configure ma1sd (Advanced)" job_type: run @@ -201,6 +217,7 @@ when: matrix_domain is defined - name: Remove 'Configure Synapse' job template + delegate_to: 127.0.0.1 awx.awx.tower_job_template: name: "{{ matrix_domain }} - 1 - Configure Synapse" job_type: run @@ -213,6 +230,7 @@ when: matrix_domain is defined - name: Remove 'Configure Synapse Admin' job template + delegate_to: 127.0.0.1 awx.awx.tower_job_template: name: "{{ matrix_domain }} - 1 - Configure Synapse Admin" job_type: run @@ -225,6 +243,7 @@ when: matrix_domain is defined - name: Remove 'Access Export' job template + delegate_to: 127.0.0.1 awx.awx.tower_job_template: name: "{{ matrix_domain }} - 1 - Access Export" job_type: run @@ -237,6 +256,7 @@ when: matrix_domain is defined - name: Remove 'Configure Website + Access Export' job template + delegate_to: 127.0.0.1 awx.awx.tower_job_template: name: "{{ matrix_domain }} - 1 - Configure Website + Access Export" job_type: run @@ -249,6 +269,7 @@ when: matrix_domain is defined - name: Remove 'Create User' job template + delegate_to: 127.0.0.1 awx.awx.tower_job_template: name: "{{ matrix_domain }} - 2 - Create User" job_type: run @@ -261,6 +282,7 @@ when: matrix_domain is defined - name: Remove 'Purge Media (Advanced)' job template + delegate_to: 127.0.0.1 awx.awx.tower_job_template: name: "{{ matrix_domain }} - 2 - Purge Media (Advanced)" job_type: run @@ -273,6 +295,7 @@ when: matrix_domain is defined - name: Remove '<< SUBSCRIPTION DELETION IN PROGRESS >>' job template + delegate_to: 127.0.0.1 awx.awx.tower_job_template: name: "0 - {{ subscription_id }} - << SUBSCRIPTION DELETION IN PROGRESS >>" job_type: run @@ -284,6 +307,7 @@ validate_certs: yes - name: Remove Matrix server from organisations inventory + delegate_to: 127.0.0.1 awx.awx.tower_host: name: "matrix.{{ matrix_domain }}" description: "{{ matrix_domain }} Matrix Server" @@ -295,6 +319,7 @@ when: matrix_domain is defined - name: Remove Wireguard Server from organisations inventory + delegate_to: 127.0.0.1 awx.awx.tower_host: name: "wireguard.{{ matrix_domain }}" description: "{{ matrix_domain }} Wireguard Proxy" diff --git a/roles/matrix-awx/tasks/delete_mailgun.yml b/roles/matrix-awx/tasks/delete_mailgun.yml index 68b985f9..69d41ffd 100644 --- a/roles/matrix-awx/tasks/delete_mailgun.yml +++ b/roles/matrix-awx/tasks/delete_mailgun.yml @@ -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 diff --git a/roles/matrix-awx/tasks/delete_server.yml b/roles/matrix-awx/tasks/delete_server.yml index 63e21541..6924a8eb 100755 --- a/roles/matrix-awx/tasks/delete_server.yml +++ b/roles/matrix-awx/tasks/delete_server.yml @@ -1,20 +1,24 @@ - name: Include hosting vars of digital_ocean.yml + delegate_to: 127.0.0.1 include_vars: file: /var/lib/awx/projects/hosting/hosting_vars.yml no_log: True - name: Load vars from organisation.yml + delegate_to: 127.0.0.1 include_vars: file: '/var/lib/awx/projects/clients/{{ member_id }}/organisation.yml' - name: Load vars from server_vars.yml + delegate_to: 127.0.0.1 include_vars: file: '/var/lib/awx/projects/clients/{{ member_id }}/{{ subscription_id }}/server_vars.yml' ignore_errors: yes - name: Remove existing Digital Ocean Droplet + delegate_to: 127.0.0.1 community.digitalocean.digital_ocean_droplet: # needs ansible 2.8+ (AWX uses 2.9.10 at ) state: absent diff --git a/roles/matrix-awx/tasks/delete_server_directory.yml b/roles/matrix-awx/tasks/delete_server_directory.yml index f7145b50..b0e45abc 100755 --- a/roles/matrix-awx/tasks/delete_server_directory.yml +++ b/roles/matrix-awx/tasks/delete_server_directory.yml @@ -1,5 +1,6 @@ - name: Delete the servers directory on AWX + delegate_to: 127.0.0.1 file: path: '/var/lib/awx/projects/clients/{{ member_id }}/{{ subscription_id }}/' state: absent