mirror of
https://gitlab.com/s3lph/ansible-collection-prometheus
synced 2024-11-22 09:41:01 +01:00
Fix typos and formatting issues
This commit is contained in:
parent
b171046f4c
commit
28ba191c8d
2 changed files with 3 additions and 2 deletions
|
@ -27,4 +27,5 @@
|
||||||
|
|
||||||
- hosts: prometheus
|
- hosts: prometheus
|
||||||
roles:
|
roles:
|
||||||
|
- s3lph.pki.pki_entity
|
||||||
- s3lph.prometheus.prometheus
|
- s3lph.prometheus.prometheus
|
||||||
|
|
|
@ -31,12 +31,12 @@
|
||||||
password: {{ job.basic_auth_password }}
|
password: {{ job.basic_auth_password }}
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
|
|
||||||
{% if 'tls_config' in job %}
|
{% if 'tls_config' in job -%}
|
||||||
tls_config:
|
tls_config:
|
||||||
ca_file: {{ job.tls_config.ca_file }}
|
ca_file: {{ job.tls_config.ca_file }}
|
||||||
cert_file: {{ job.tls_config.cert_file }}
|
cert_file: {{ job.tls_config.cert_file }}
|
||||||
key_file: {{ job.tls_config.key_file }}
|
key_file: {{ job.tls_config.key_file }}
|
||||||
insecure_skip_verify: {{ job.tls_config.key_file | default(false) }}
|
insecure_skip_verify: {{ job.tls_config.insecure_skip_verify | default(false) }}
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
|
|
||||||
static_configs:
|
static_configs:
|
||||||
|
|
Loading…
Reference in a new issue