New in version 2.1.
The below requirements are needed on the host that executes this module.
Parameter |
Choices/Defaults |
Comments |
---|---|---|
access_level
|
|
The access level to the group. One of the following can be used.
guest
reporter
developer
master
owner
|
confirm
(added in 2.4) |
|
Require confirmation.
|
email
required |
|
The email that belongs to the user.
|
group
|
|
Add user as an member to this group.
|
login_password
|
|
Gitlab password for login_user
|
login_token
|
|
Gitlab token for logging in.
|
login_user
|
|
Gitlab user name.
|
name
required |
|
Name of the user you want to create
|
password
required |
|
The password of the user.
GitLab server enforces minimum password length to 8, set this value with 8 or more characters.
|
server_url
required |
|
Url of Gitlab server, with protocol (http or https).
|
sshkey_file
|
|
The ssh key itself.
|
sshkey_name
|
|
The name of the sshkey
|
state
|
|
create or delete group.
Possible values are present and absent.
|
username
required |
|
The username of the user.
|
validate_certs
|
|
When using https if SSL certificate needs to be verified.
aliases: verify_ssl |
- name: Delete Gitlab User
gitlab_user:
server_url: http://gitlab.example.com
validate_certs: False
login_token: WnUzDsxjy8230-Dy_k
username: myusername
state: absent
delegate_to: localhost
- name: Create Gitlab User
gitlab_user:
server_url: https://gitlab.dj-wasabi.local
validate_certs: True
login_user: dj-wasabi
login_password: MySecretPassword
name: My Name
username: myusername
password: mysecretpassword
email: me@example.com
sshkey_name: MySSH
sshkey_file: ssh-rsa AAAAB3NzaC1yc...
state: present
delegate_to: localhost
This module is flagged as preview which means that it is not guaranteed to have a backwards compatible interface.
Hint
If you notice any issues in this documentation you can edit this document to improve it.