diff --git a/slococo/playground/galaxy.yml b/slococo/playground/galaxy.yml index a8a4a8c..57395d4 100644 --- a/slococo/playground/galaxy.yml +++ b/slococo/playground/galaxy.yml @@ -6,7 +6,7 @@ readme: README.md authors: - Santiago Lo Coco -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" diff --git a/slococo/playground/playbook.yml b/slococo/playground/playbooks/main.yml similarity index 54% rename from slococo/playground/playbook.yml rename to slococo/playground/playbooks/main.yml index 2d0e1e8..8ae598c 100644 --- a/slococo/playground/playbook.yml +++ b/slococo/playground/playbooks/main.yml @@ -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 \ No newline at end of file + private_key_path: /Users/slococo/keys/ \ No newline at end of file diff --git a/slococo/playground/roles/local_accounts/meta/argument_specs.yml b/slococo/playground/roles/local_accounts/meta/argument_specs.yml index 4779a0b..3ce97cc 100644 --- a/slococo/playground/roles/local_accounts/meta/argument_specs.yml +++ b/slococo/playground/roles/local_accounts/meta/argument_specs.yml @@ -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."