Skip to content
Snippets Groups Projects
Commit 456fa113 authored by Attila Farkas's avatar Attila Farkas
Browse files

fix error in extra_vars location

parent b09af3bb
No related branches found
No related tags found
1 merge request!15Resolve "Support Jinja templates in files with extra_vars"
...@@ -137,7 +137,7 @@ def _create_ansible_commands(playbook_location, input_definitions, flags): ...@@ -137,7 +137,7 @@ def _create_ansible_commands(playbook_location, input_definitions, flags):
if "ansible_local" in flags and flags["ansible_local"]: if "ansible_local" in flags and flags["ansible_local"]:
extra_vars_location = "/vagrant/extra_vars.yml" extra_vars_location = "/vagrant/extra_vars.yml"
else: else:
extra_vars_location = flags["ansible_local"] extra_vars_location = flags["extra_vars"]
user_extra_vars = dict() user_extra_vars = dict()
user_extra_vars["type"] = "string" user_extra_vars["type"] = "string"
user_extra_vars["command"] = "raw_arguments" user_extra_vars["command"] = "raw_arguments"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment