monitoring: Remove some log output that may contains secrets

This patch instructs Ansible to stop logging passwords for influxdb.
This commit is contained in:
Sheogorath 2020-08-13 19:21:55 +02:00 committed by saibotk
parent 7fe14f1b0b
commit 2d916fbaa1
No known key found for this signature in database
GPG key ID: A3299C587D5DF523
2 changed files with 3 additions and 0 deletions

View file

@ -28,6 +28,7 @@
validate_certs: yes
database_name: "{{ database.name }}"
delegate_to: 127.0.0.1
no_log: True
- name: Create retention policies
influxdb_retention_policy:

View file

@ -30,6 +30,7 @@
user_password: "{{ monitoring_influxdb_admin_password }}"
admin: yes
delegate_to: 127.0.0.1
no_log: True
- name: Configure databases
include: database.yml
@ -51,3 +52,4 @@
grants: "{{ item.grants }}"
loop: "{{ monitoring_influxdb_users }}"
delegate_to: 127.0.0.1
no_log: True