diff --git a/ansible/roles/hashicorp-apt/tasks/main.yml b/ansible/roles/hashicorp-apt/tasks/main.yml index 4259153..ea6a548 100644 --- a/ansible/roles/hashicorp-apt/tasks/main.yml +++ b/ansible/roles/hashicorp-apt/tasks/main.yml @@ -1,29 +1,4 @@ --- -#- name: Add hashicorp GPG key -# become: true -# apt_key: -# url: https://apt.releases.hashicorp.com/gpg -# state: present -# -#- name: Add hashicorp repository -# become: true -# apt_repository: -# repo: deb [arch=amd64] https://apt.releases.hashicorp.com {{ ansible_distribution_release }} main -# state: present - -#- name: Add Vault/Hashicorp apt key -# apt_key: -# url: "https://apt.releases.hashicorp.com/gpg" -# state: present -# become: true -# when: ansible_pkg_mgr == 'apt' -# -#- name: Add Vault/Hashicorp apt repo -# apt_repository: -# repo: "deb https://apt.releases.hashicorp.com/gpg {{ ansible_distribution_release }} main" -# state: present -# become: true -# when: ansible_pkg_mgr == 'apt' - name: Add Hashicorp apt key become: true diff --git a/ansible/roles/ssh/tasks/main.yml b/ansible/roles/ssh/tasks/main.yml index 69099df..bef5d4a 100644 --- a/ansible/roles/ssh/tasks/main.yml +++ b/ansible/roles/ssh/tasks/main.yml @@ -25,3 +25,7 @@ ignore_errors: yes register: task_result failed_when: "'blah' in task_result" + +- name: Tell user to generate openVPN configuration for users + debug: + msg: "Please generate openVPN configuration for users: {{ task_result.results | map(attribute='item') | map(attribute='user') | list | join(', ') }}. See https://docs.redbrick.dcu.ie/aperture/vpn/ for more information." \ No newline at end of file