mirror of
https://github.com/ansible/awx-operator.git
synced 2026-03-26 21:33:14 +00:00
Merge pull request #206 from tchellomello/pwd_quotes
Removed jinja2 filter 'quote' for db password
This commit is contained in:
@@ -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") }}',
|
||||
|
||||
Reference in New Issue
Block a user