From 451c8ba09488236213d048e4a78a063de97dd9e3 Mon Sep 17 00:00:00 2001 From: sio user Date: Tue, 30 Jan 2024 12:04:15 +0100 Subject: [PATCH] roles awx-usser et awx-user-cli --- roles/awx-user-cli/tasks/main.yml | 20 ++++++++++++++++++++ roles/awx-user/tasks/main.yml | 14 ++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 roles/awx-user-cli/tasks/main.yml create mode 100644 roles/awx-user/tasks/main.yml 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