Add playbook and update galaxy.yml
This commit is contained in:
parent
3ff7debdf3
commit
f983dd5357
|
@ -4,19 +4,18 @@ version: 1.0.0
|
||||||
readme: README.md
|
readme: README.md
|
||||||
|
|
||||||
authors:
|
authors:
|
||||||
- Santiago Lo Coco <slococo@slc.ar>
|
- Santiago Lo Coco <slococo@slc.ar>
|
||||||
|
|
||||||
description: ...
|
description: ...
|
||||||
|
|
||||||
license:
|
license:
|
||||||
- MIT
|
- MIT
|
||||||
license_file: LICENSE.md
|
license_file: LICENSE.md
|
||||||
|
|
||||||
tags: []
|
tags:
|
||||||
dependencies: {}
|
- users
|
||||||
|
- ssh
|
||||||
|
- config
|
||||||
|
|
||||||
repository: https://git.slc.ar/slococo/ansible-playground
|
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
|
issues: https://git.slc.ar/slococo/ansible-playground/issues
|
||||||
|
|
||||||
build_ignore: []
|
|
||||||
|
|
|
@ -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
|
Loading…
Reference in New Issue