mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.2 KiB
YAML
51 lines
1.2 KiB
YAML
- name: Install required libs
|
|
pip:
|
|
name: python-gitlab
|
|
state: present
|
|
|
|
- name: Clean up gitlab user
|
|
gitlab_user:
|
|
server_url: "{{ gitlab_host }}"
|
|
name: ansible_test_user
|
|
username: ansible_test_user
|
|
password: Secr3tPassw00rd
|
|
email: root@localhost
|
|
validate_certs: false
|
|
login_token: "{{ gitlab_login_token }}"
|
|
state: absent
|
|
|
|
|
|
- name: Create gitlab user
|
|
gitlab_user:
|
|
server_url: "{{ gitlab_host }}"
|
|
email: "{{ gitlab_user_email }}"
|
|
name: "{{ gitlab_user }}"
|
|
username: "{{ gitlab_user }}"
|
|
password: "{{ gitlab_user_pass }}"
|
|
validate_certs: False
|
|
login_token: "{{ gitlab_login_token }}"
|
|
state: present
|
|
register: gitlab_user_state
|
|
|
|
- name: Check user has been created correctly
|
|
assert:
|
|
that:
|
|
- gitlab_user_state is changed
|
|
|
|
- name: Create gitlab user again
|
|
gitlab_user:
|
|
server_url: "{{ gitlab_host }}"
|
|
email: root@localhost
|
|
name: ansible_test_user
|
|
username: ansible_test_user
|
|
password: Secr3tPassw00rd
|
|
validate_certs: False
|
|
login_token: "{{ gitlab_login_token }}"
|
|
state: present
|
|
register: gitlab_user_state_again
|
|
|
|
- name: Check state is not changed
|
|
assert:
|
|
that:
|
|
- gitlab_user_state_again is not changed
|