mirror of
https://github.com/ansible/awx-operator.git
synced 2026-05-07 05:42:55 +00:00
17 lines
573 B
Django/Jinja
17 lines
573 B
Django/Jinja
DATABASES = {
|
|
'default': {
|
|
'ATOMIC_REQUESTS': True,
|
|
'ENGINE': 'awx.main.db.profiled_pg',
|
|
'NAME': "{{ awx_postgres_database }}",
|
|
'USER': "{{ awx_postgres_user }}",
|
|
'PASSWORD': "{{ awx_postgres_pass | quote }}",
|
|
'HOST': '{{ awx_postgres_host }}',
|
|
'PORT': "{{ awx_postgres_port }}",
|
|
'OPTIONS': { 'sslmode': '{{ pg_sslmode|default("prefer") }}',
|
|
'sslrootcert': '{{ ca_trust_bundle }}',
|
|
},
|
|
}
|
|
}
|
|
|
|
BROADCAST_WEBSOCKET_SECRET = "{{ tower_broadcast_websocket_secret | b64encode }}"
|