--- - hosts: all gather_facts: false tasks: - name: Load variables include_vars: dir: "{{ dokku_lib_root }}/data/ansible/autonomic.zone/vars/" extensions: - yml - name: "Configure the {{ domain }} domain" dokku_domains: app: autonomic.zone domains: - "{{ domain }}" state: present - name: Ensure default app configured domains go away dokku_domains: app: autonomic.zone domains: - autonomic.zone.dokku.autonomic.zone state: absent - name: Configure the dokku app environment dokku_config: app: autonomic.zone restart: false config: DOKKU_LETSENCRYPT_EMAIL: "{{ autonomic_admin_mail }}" JEKYLL_HOST: "0.0.0.0" JEKYLL_PORT: "{{ http_port }}" JEKYLL_CONFIG: "{{ jekyll_config }}" JEKYLL_ENV: "{{ jekyll_env }}"