Merge pull request #249 from matburt/preopulate_awx_user

Allow pre-populating the default AWX superuser account
This commit is contained in:
Matthew Jones
2017-09-22 21:52:03 -04:00
committed by GitHub
4 changed files with 21 additions and 3 deletions

View File

@@ -193,6 +193,8 @@
RABBITMQ_VHOST: "awx"
MEMCACHED_HOST: "memcached"
MEMCACHED_PORT: "11211"
AWX_ADMIN_USER: "{{ default_admin_user|default('admin') }}"
AWX_ADMIN_PASSWORD: "{{ default_admin_password|default('password') }}"
- name: Activate AWX Task Container
docker_container:
@@ -217,4 +219,6 @@
RABBITMQ_VHOST: "awx"
MEMCACHED_HOST: "memcached"
MEMCACHED_PORT: "11211"
SECRET_KEY: "{{ awx_secret_key }}"
AWX_ADMIN_USER: "{{ default_admin_user|default('admin') }}"
AWX_ADMIN_PASSWORD: "{{ default_admin_password|default('password') }}"