Merge pull request #206 from tchellomello/pwd_quotes

Removed jinja2 filter 'quote' for db password
This commit is contained in:
Shane McDonald
2021-04-12 16:36:53 -04:00
committed by GitHub

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") }}',