mirror of
https://github.com/ansible/awx.git
synced 2026-05-11 19:37:38 -02:30
Generalize variable names in installer
secret_key
This commit is contained in:
@@ -96,7 +96,7 @@
|
||||
http_proxy: "{{ http_proxy | default('') }}"
|
||||
https_proxy: "{{ https_proxy | default('') }}"
|
||||
no_proxy: "{{ no_proxy | default('') }}"
|
||||
SECRET_KEY: "{{ awx_secret_key }}"
|
||||
SECRET_KEY: "{{ secret_key }}"
|
||||
DATABASE_NAME: "{{ pg_database }}"
|
||||
DATABASE_USER: "{{ pg_username }}"
|
||||
DATABASE_PASSWORD: "{{ pg_password }}"
|
||||
@@ -132,7 +132,7 @@
|
||||
http_proxy: "{{ http_proxy | default('') }}"
|
||||
https_proxy: "{{ https_proxy | default('') }}"
|
||||
no_proxy: "{{ no_proxy | default('') }}"
|
||||
SECRET_KEY: "{{ awx_secret_key }}"
|
||||
SECRET_KEY: "{{ secret_key }}"
|
||||
DATABASE_NAME: "{{ pg_database }}"
|
||||
DATABASE_USER: "{{ pg_username }}"
|
||||
DATABASE_PASSWORD: "{{ pg_password }}"
|
||||
|
||||
@@ -46,7 +46,7 @@ services:
|
||||
http_proxy: {{ http_proxy | default('') }}
|
||||
https_proxy: {{ https_proxy | default('') }}
|
||||
no_proxy: {{ no_proxy | default('') }}
|
||||
SECRET_KEY: {{ awx_secret_key }}
|
||||
SECRET_KEY: {{ secret_key }}
|
||||
DATABASE_NAME: {{ pg_database }}
|
||||
DATABASE_USER: {{ pg_username }}
|
||||
DATABASE_PASSWORD: {{ pg_password }}
|
||||
@@ -105,7 +105,7 @@ services:
|
||||
http_proxy: {{ http_proxy | default('') }}
|
||||
https_proxy: {{ https_proxy | default('') }}
|
||||
no_proxy: {{ no_proxy | default('') }}
|
||||
SECRET_KEY: {{ awx_secret_key }}
|
||||
SECRET_KEY: {{ secret_key }}
|
||||
DATABASE_NAME: {{ pg_database }}
|
||||
DATABASE_USER: {{ pg_username }}
|
||||
DATABASE_PASSWORD: {{ pg_password }}
|
||||
|
||||
Reference in New Issue
Block a user