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: authors:
- Santiago Lo Coco <slococo@slc.ar> - Santiago Lo Coco <slococo@slc.ar>
description: ... description: This collection contains roles to manage SSH settings and create local user accounts.
license: license:
- MIT - MIT
@ -19,3 +19,6 @@ tags:
repository: https://git.slc.ar/slococo/ansible-playground repository: 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
dependencies:
"community.crypto": ">=2.0.0"

View File

@ -1,17 +1,11 @@
- name: Configure SSH and add user accounts - name: Configure SSH and add user accounts
hosts: all hosts: all
collections:
- slococo.playground
become: true become: true
gather_facts: true
tasks: roles:
- name: Import ssh_config - role: ssh_config
ansible.builtin.import_role: - role: local_accounts
name: ssh_config
- name: Import local_accounts
ansible.builtin.import_role:
name: local_accounts
vars: vars:
accounts: accounts:
- name: local_adm - name: local_adm
@ -22,4 +16,4 @@
userid: 38000088 userid: 38000088
expiry_date: '2024-12-31' expiry_date: '2024-12-31'
passwordless: true passwordless: true
private_key_path: /Users/slococo/keys private_key_path: /Users/slococo/keys/

View File

@ -44,4 +44,4 @@ argument_specs:
type: str type: str
required: no required: no
default: /tmp 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."