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.
84 lines
2.4 KiB
YAML
84 lines
2.4 KiB
YAML
---
|
|
|
|
- name: Install influxdb python module
|
|
pip: name=influxdb
|
|
|
|
- name: Test add admin user in check mode
|
|
block:
|
|
- name: Add admin user
|
|
influxdb_user: user_name=admin user_password=admin admin=yes
|
|
check_mode: true
|
|
register: add_admin_user
|
|
|
|
- name: Check that admin user adding succeeds with a change
|
|
assert:
|
|
that:
|
|
- add_admin_user.changed == true
|
|
|
|
- name: Test add admin user
|
|
block:
|
|
- name: Add admin user
|
|
influxdb_user: user_name=admin user_password=admin admin=yes
|
|
register: add_admin_user
|
|
|
|
- name: Check that admin user adding succeeds with a change
|
|
assert:
|
|
that:
|
|
- add_admin_user.changed == true
|
|
|
|
- name: Test add admin user idempotence
|
|
block:
|
|
- name: Add admin user
|
|
influxdb_user: user_name=admin user_password=admin admin=yes
|
|
register: add_admin_user
|
|
|
|
- name: Check that admin user adding succeeds without a change
|
|
assert:
|
|
that:
|
|
- add_admin_user.changed == false
|
|
|
|
- name: Enable authentication and restart service
|
|
block:
|
|
- name: Enable authentication
|
|
lineinfile:
|
|
path: /etc/influxdb/influxdb.conf
|
|
regexp: 'auth-enabled ='
|
|
line: ' auth-enabled = true'
|
|
|
|
- name: Restart InfluxDB service
|
|
service: name=influxdb state=restarted
|
|
|
|
- name: Test add user in check mode when authentication enabled
|
|
block:
|
|
- name: Add user
|
|
influxdb_user: user_name=user user_password=user login_username=admin login_password=admin
|
|
check_mode: true
|
|
register: add_user_with_auth_enabled
|
|
|
|
- name: Check that adding user with enabled authentication succeeds with a change
|
|
assert:
|
|
that:
|
|
- add_user_with_auth_enabled.changed == true
|
|
|
|
- name: Test add user when authentication enabled
|
|
block:
|
|
- name: Add user
|
|
influxdb_user: user_name=user user_password=user login_username=admin login_password=admin
|
|
register: add_user_with_auth_enabled
|
|
|
|
- name: Check that adding user with enabled authentication succeeds with a change
|
|
assert:
|
|
that:
|
|
- add_user_with_auth_enabled.changed == true
|
|
|
|
- name: Test add user when authentication enabled idempotence
|
|
block:
|
|
- name: Add the same user
|
|
influxdb_user: user_name=user user_password=user login_username=admin login_password=admin
|
|
register: same_user
|
|
|
|
- name: Check that adding same user succeeds without a change
|
|
assert:
|
|
that:
|
|
- same_user.changed == false
|