我正在寻找Ansible Tower等效的从文件加载额外变量的方法。就像来自cli的......-- extra-vars“@ somefile.yml”参数。这可以在Ansible Tower中完成吗?
答案 0 :(得分:0)
从塔楼你有几个选择:
--extra-vars
(考虑到Tower不是cli,你不能传递文件,但你可以在那里复制/粘贴你的文件)。- name: Load a variable file based on Survey, or a default if not found.
include_vars: "{{ item }}"
with_first_found:
- "{{ firts_option }}.yaml"
- "{{ second_option }}.yaml"
- default.yaml