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.
45 lines
1.0 KiB
YAML
45 lines
1.0 KiB
YAML
- name: Install required libs
|
|
pip:
|
|
name: python-gitlab
|
|
state: present
|
|
|
|
- name: Cleanup Gitlab Group
|
|
gitlab_group:
|
|
server_url: "{{ gitlab_host }}"
|
|
validate_certs: false
|
|
login_token: "{{ gitlab_login_token }}"
|
|
name: ansible_test_group
|
|
path: ansible_test_group
|
|
state: absent
|
|
|
|
- name: Create Gitlab Group
|
|
gitlab_group:
|
|
server_url: "{{ gitlab_host }}"
|
|
validate_certs: false
|
|
login_token: "{{ gitlab_login_token }}"
|
|
name: ansible_test_group
|
|
path: ansible_test_group
|
|
state: present
|
|
register: gitlab_group_state
|
|
|
|
- name: Test group created
|
|
assert:
|
|
that:
|
|
- gitlab_group_state is changed
|
|
|
|
|
|
- name: Create Gitlab Group ( Idempotency test )
|
|
gitlab_group:
|
|
server_url: "{{ gitlab_host }}"
|
|
validate_certs: false
|
|
login_token: "{{ gitlab_login_token }}"
|
|
name: ansible_test_group
|
|
path: ansible_test_group
|
|
state: present
|
|
register: gitlab_group_state_again
|
|
|
|
- name: Test module is idempotent
|
|
assert:
|
|
that:
|
|
- gitlab_group_state_again is not changed
|