Removed jinja2 filter 'quote' for db password

This commit is contained in:
Marcelo Moreira de Mello
2021-04-12 16:23:21 -04:00
parent 9503d3cf48
commit 57071129bf

View File

@@ -4,7 +4,7 @@ DATABASES = {
'ENGINE': 'awx.main.db.profiled_pg',
'NAME': "{{ awx_postgres_database }}",
'USER': "{{ awx_postgres_user }}",
'PASSWORD': "{{ awx_postgres_pass | quote }}",
'PASSWORD': "{{ awx_postgres_pass }}",
'HOST': '{{ awx_postgres_host }}',
'PORT': "{{ awx_postgres_port }}",
'OPTIONS': { 'sslmode': '{{ pg_sslmode|default("prefer") }}',