fix: quote some special config values like passwords
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Robert Kaussow 2021-05-31 16:18:17 +02:00
parent 21e6e08351
commit e557266291
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
1 changed files with 3 additions and 3 deletions

View File

@ -110,7 +110,7 @@ storage:
port: {{ authelia_storage_db_port }}
database: {{ authelia_storage_db_name }}
username: {{ authelia_storage_db_username }}
password: {{ authelia_storage_db_password }}
password: '{{ authelia_storage_db_password }}'
sslmode: {{ authelia_storage_db_sslmode }}
{% else %}
local:
@ -123,12 +123,12 @@ notifier:
smtp:
username: {{ authelia_notifier_smtp_username }}
password: {{ authelia_notifier_smtp_password }}
password: '{{ authelia_notifier_smtp_password }}'
host: {{ authelia_notifier_smtp_host }}
port: {{ authelia_notifier_smtp_port }}
sender: {{ authelia_notifier_smtp_sender }}
identifier: {{ authelia_notifier_smtp_identifier }}
subject: {{ authelia_notifier_smtp_subject }}
subject: "{{ authelia_notifier_smtp_subject }}"
startup_check_address: {{ authelia_notifier_smtp_startup_check_address }}
disable_require_tls: {{ authelia_notifier_smtp_disable_require_tls | bool | lower }}
disable_html_emails: {{ authelia_notifier_smtp_disable_html_emails | bool | lower }}