12 lines
324 B
Plaintext
12 lines
324 B
Plaintext
|
DATABASES = {
|
||
|
'default': {
|
||
|
'ATOMIC_REQUESTS': True,
|
||
|
'ENGINE': 'awx.main.db.profiled_pg',
|
||
|
'NAME': "{{ pg_database }}",
|
||
|
'USER': "{{ pg_username }}",
|
||
|
'PASSWORD': "{{ pg_password }}",
|
||
|
'HOST': "{{ pg_hostname | default('postgres') }}",
|
||
|
'PORT': "{{ pg_port }}",
|
||
|
}
|
||
|
}
|