From f23ca9737d97f52b3787090ef4deb3c1841ea487 Mon Sep 17 00:00:00 2001 From: Dmitriy Rabotyagov Date: Sat, 28 May 2022 08:05:04 +0200 Subject: [PATCH] Move installation variables collection to beginning We need to collect installation method variables as early as we can as we rely on them later on in the play. Change-Id: I0fa1b7b25a4b6ced5606018410825e7cf2eac54a --- tasks/main.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tasks/main.yml b/tasks/main.yml index e499e706..170f830e 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -39,6 +39,11 @@ tags: - always +- name: Gather variables for installation method + include_vars: "{{ octavia_install_method }}_install.yml" + tags: + - always + - name: Fail if our required secrets are not present fail: msg: "Please set the {{ item }} variable prior to applying this role."