summaryrefslogtreecommitdiffstats
path: root/roles/user/meta/argument_specs.yml
blob: 1b886e56b59118d5d394713123ef3dcf921c5f2d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
argument_specs:
  main:
    options:
      username:
        type: "str"
        required: true
        description: "The username of the created account."
      user_password:
        type: "str"
        required: false
        description: "If provided, the password will be used for the user account."
        no_log: true
      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: []