diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2023-01-18 21:06:51 +0100 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2023-04-02 11:45:09 +0200 |
commit | cb6189507ab4f6c6db960105c69b69e92f7710c0 (patch) | |
tree | 3daddeb6a85585f5d387697a9c45069d72db7fd2 /roles/sshd_keys/meta | |
parent | 5d019d2ad90c39cfae2d7edf0208c98060ddbd8e (diff) | |
download | rules-cb6189507ab4f6c6db960105c69b69e92f7710c0.tar.gz |
feat(roles/sshd_keys): add argument specs
Diffstat (limited to 'roles/sshd_keys/meta')
-rw-r--r-- | roles/sshd_keys/meta/main.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/roles/sshd_keys/meta/main.yml b/roles/sshd_keys/meta/main.yml index 46c62ed..e790d71 100644 --- a/roles/sshd_keys/meta/main.yml +++ b/roles/sshd_keys/meta/main.yml @@ -3,3 +3,25 @@ dependencies: - role: sshd tags: dependency + +argument_specs: + main: + short_description: sshd_keys main entrypoint. + options: + + sshd_keys_users: + type: list + elements: str + required: true + description: Users to be synced + + sshd_keys_dir: + type: path + required: true + description: Local directory with public keys + + sshd_keys_paths: + type: list + elements: path + required: true + description: Local directory with public keys |