Distribute playbooks

This commit is contained in:
Santiago Lo Coco 2024-04-14 18:00:23 +02:00
parent b0af407737
commit f83402fbfd
3 changed files with 10 additions and 13 deletions

View File

@ -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"

View File

@ -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/

View File

@ -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."