Distribute playbooks
This commit is contained in:
parent
b0af407737
commit
f83402fbfd
|
@ -6,7 +6,7 @@ readme: README.md
|
|||
authors:
|
||||
- Santiago Lo Coco <slococo@slc.ar>
|
||||
|
||||
description: ...
|
||||
description: This collection contains roles to manage SSH settings and create local user accounts.
|
||||
|
||||
license:
|
||||
- MIT
|
||||
|
@ -19,3 +19,6 @@ tags:
|
|||
|
||||
repository: https://git.slc.ar/slococo/ansible-playground
|
||||
issues: https://git.slc.ar/slococo/ansible-playground/issues
|
||||
|
||||
dependencies:
|
||||
"community.crypto": ">=2.0.0"
|
||||
|
|
|
@ -1,17 +1,11 @@
|
|||
- name: Configure SSH and add user accounts
|
||||
hosts: all
|
||||
collections:
|
||||
- slococo.playground
|
||||
become: true
|
||||
gather_facts: true
|
||||
|
||||
tasks:
|
||||
- name: Import ssh_config
|
||||
ansible.builtin.import_role:
|
||||
name: ssh_config
|
||||
|
||||
- name: Import local_accounts
|
||||
ansible.builtin.import_role:
|
||||
name: local_accounts
|
||||
roles:
|
||||
- role: ssh_config
|
||||
- role: local_accounts
|
||||
vars:
|
||||
accounts:
|
||||
- name: local_adm
|
||||
|
@ -22,4 +16,4 @@
|
|||
userid: 38000088
|
||||
expiry_date: '2024-12-31'
|
||||
passwordless: true
|
||||
private_key_path: /Users/slococo/keys
|
||||
private_key_path: /Users/slococo/keys/
|
|
@ -44,4 +44,4 @@ argument_specs:
|
|||
type: str
|
||||
required: no
|
||||
default: /tmp
|
||||
description: "Path to the private key. If not provided, the default path will be /tmp."
|
||||
description: "Path to the private key on the Ansible control node. If not provided, the default path will be /tmp."
|
||||
|
|
Loading…
Reference in New Issue