diff --git a/roles/awx-user-cli/tasks/main.yml b/roles/awx-user-cli/tasks/main.yml new file mode 100644 index 0000000..9e5619a --- /dev/null +++ b/roles/awx-user-cli/tasks/main.yml @@ -0,0 +1,20 @@ +--- + +- name: Creation user awx + ansible.builtin.user: + name: awx + groups: sudo + append: yes + shell: /bin/bash + +- name: Get awx key_pub + get_url: + url: s-adm.gsb.adm/gsbstore/id_rsa_awx.pub + dest: /tmp + + +- name: Set authorized key taken from file /tmp + ansible.posix.authorized_key: + user: awx + state: present + key: "{{ lookup('file', '/tmp/id_rsa_awx.pub') }}" diff --git a/roles/awx-user/tasks/main.yml b/roles/awx-user/tasks/main.yml new file mode 100644 index 0000000..7d8b900 --- /dev/null +++ b/roles/awx-user/tasks/main.yml @@ -0,0 +1,14 @@ +--- +- name: Creation user awx, cle SSH et group sudo + ansible.builtin.user: + name: awx + groups: sudo + append: yes + shell: /bin/bash + generate_ssh_key: yes + +- name: Copie cle publique dans gsbstore + copy: + src: /home/awx/.ssh/id_rsa.pub + dest: /var/www/html/gsbstore/id_rsa_awx.pub + remote_src: yes