summaryrefslogtreecommitdiffstats
path: root/roles/user/meta/argument_specs.yml
blob: 5d2e4b9bda3de6c33cd81bb4fe63ef076c6ab525 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
argument_specs:
  main:
    short_description: "Configure user and user public keys"
    description: "Configure user and user public keys"
    options:
      username:
        type: "str"
        required: true
        description: "The username of the created account."
      user_public_keys:
        type: "list"
        required: true
        description: "The list SSH public key to be added to user authorized_keys."
        elements: "str"
      user_groups:
        type: "list"
        description: "The list of groups the user should be added to."
        elements: "str"
        default: []