From 2cfe5f0cde79cd6bc464b096876a1b948ac658d3 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Mon, 13 Apr 2020 14:22:19 +0200 Subject: [PATCH] Load vars in that we control --- plays/lib/vars.yml | 4 ++-- plays/post_deploy.yml | 4 ++-- plays/pre_deploy.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/plays/lib/vars.yml b/plays/lib/vars.yml index 3327a0f..3038e8c 100644 --- a/plays/lib/vars.yml +++ b/plays/lib/vars.yml @@ -7,5 +7,5 @@ - yaml with_items: - "{{ plugin_config_root }}" - - "{{ app_config_root }}" - - "{{ app_config_root }}/vault" + # - "{{ app_config_root }}" + # - "{{ app_config_root }}/vault" diff --git a/plays/post_deploy.yml b/plays/post_deploy.yml index a96ab66..e452b32 100644 --- a/plays/post_deploy.yml +++ b/plays/post_deploy.yml @@ -2,10 +2,10 @@ - hosts: all gather_facts: false tasks: + - name: Include vars tasks + include: ./lib/vars.yml - name: Include debug tasks include: ./lib/debug.yml - # - name: Include vars tasks - # include: ./lib/vars.yml # - name: Include http tasks # include: ./lib/http.yml # - name: Include certs tasks diff --git a/plays/pre_deploy.yml b/plays/pre_deploy.yml index 2b33c5b..c6dfc1c 100644 --- a/plays/pre_deploy.yml +++ b/plays/pre_deploy.yml @@ -2,10 +2,10 @@ - hosts: all gather_facts: false tasks: + - name: Include vars tasks + include: ./lib/vars.yml - name: Include debug tasks include: ./lib/debug.yml - # - name: Include vars tasks - # include: ./lib/vars.yml # - name: Include domain tasks # include: ./lib/domain.yml # - name: Include env tasks