move extra_vars_*.yml to assets

This commit is contained in:
JuliusHerrmann 2023-10-18 22:25:04 +02:00
parent 32fe95d298
commit 3b56d81887
3 changed files with 2 additions and 2 deletions

View File

@ -13,9 +13,9 @@ fn get_result(production: bool) -> Output {
let mut extra_vars_file = vec!["@credentials.yml".into()]; let mut extra_vars_file = vec!["@credentials.yml".into()];
if production { if production {
extra_vars_file.push("@src/extra_vars_prod.yml".into()); extra_vars_file.push("@assets/extra_vars_prod.yml".into());
} else { } else {
extra_vars_file.push("@src/extra_vars_testing.yml".into()); extra_vars_file.push("@assets/extra_vars_testing.yml".into());
} }
let playbook_opts = AnsiblePlaybookOptions { let playbook_opts = AnsiblePlaybookOptions {