diff --git a/slococo/playground/galaxy.yml b/slococo/playground/galaxy.yml index 033215c..a8a4a8c 100644 --- a/slococo/playground/galaxy.yml +++ b/slococo/playground/galaxy.yml @@ -4,19 +4,18 @@ version: 1.0.0 readme: README.md authors: -- Santiago Lo Coco + - Santiago Lo Coco description: ... + license: -- MIT + - MIT license_file: LICENSE.md -tags: [] -dependencies: {} +tags: + - users + - ssh + - config repository: https://git.slc.ar/slococo/ansible-playground -documentation: https://git.slc.ar/slococo/ansible-playground -homepage: https://git.slc.ar/slococo/ansible-playground issues: https://git.slc.ar/slococo/ansible-playground/issues - -build_ignore: [] diff --git a/slococo/playground/playbook.yml b/slococo/playground/playbook.yml new file mode 100644 index 0000000..2d0e1e8 --- /dev/null +++ b/slococo/playground/playbook.yml @@ -0,0 +1,25 @@ +- name: Configure SSH and add user accounts + hosts: all + collections: + - slococo.playground + become: true + + tasks: + - name: Import ssh_config + ansible.builtin.import_role: + name: ssh_config + + - name: Import local_accounts + ansible.builtin.import_role: + name: local_accounts + vars: + accounts: + - name: local_adm + shell: /bin/bash + userid: 38000087 + - name: local_log + shell: /bin/sh + userid: 38000088 + expiry_date: '2024-12-31' + passwordless: true + private_key_path: /Users/slococo/keys \ No newline at end of file