mirror of
https://github.com/ansible/awx.git
synced 2026-01-23 15:38:06 -03:30
17 lines
447 B
Django/Jinja
17 lines
447 B
Django/Jinja
DATABASES = {
|
|
'default': {
|
|
'ATOMIC_REQUESTS': True,
|
|
'ENGINE': 'awx.main.db.profiled_pg',
|
|
'NAME': "{{ pg_database }}",
|
|
'USER': "{{ pg_username }}",
|
|
'PASSWORD': "{{ pg_password }}",
|
|
{% if enable_pgbouncer|bool %}
|
|
'HOST': "pgbouncer",
|
|
'PORT': "{{ pgbouncer_port }}",
|
|
{% else %}
|
|
'HOST': "{{ pg_hostname | default('postgres') }}",
|
|
'PORT': "{{ pg_port }}",
|
|
{% endif %}
|
|
}
|
|
}
|