Set https and allow to override

This commit is contained in:
Luke Murphy 2020-04-13 19:04:32 +02:00
parent ed6b70422e
commit b856175224
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@
# already (due to the order of the tasks we define for our deployment steps)
- name: Export variable placeholders
set_fact:
https: true
dokku_mariadb_db_addr: "dokku-mariadb-{{ app }}"
dokku_mariadb_db_user: "mariadb"
dokku_hostname: "{{ lookup('file', '/home/dokku/HOSTNAME') }}"

View File

@ -16,7 +16,7 @@
- name: Include https tasks
include: ./lib/https.yml
when: https is defined and https == true
when: https
- name: Include proxy tasks
include: ./lib/proxy.yml