在Ansible中,当我需要从Java属性文件(.properties
)中读取属性时,我会执行以下操作:
- name: Read properties
set_fact:
myProp1: {{ lookup('ini', 'myProp1 type=properties file=/path/to/file.properties }}
myProp2: {{ lookup('ini', 'myProp2 type=properties file=/path/to/file.properties }}
但是,正如Ansible documentation所说:
查找发生在本地计算机上,而不是远程计算机上。
如果属性文件位于远程目标主机中,我该怎么办? 我无法使用include_vars,因为我的属性文件具有Java属性文件格式。
答案 0 :(得分:2)
正如您所观察到的,lookup
是本地的。我使用的一种可能的解决方案是在所有情况下都不起作用的是在本地获取它然后调用查找。在尝试此操作之前,请务必阅读fetch module:
- fetch:
src: /path/to/file.properties
dest: /tmp/file.properties
flat: yes
- name: Read properties
set_fact:
myProp1: {{ lookup('ini', 'myProp1 type=properties file=/tmp/file.properties }}
myProp2: {{ lookup('ini', 'myProp2 type=properties file=/tmp/file.properties }}
注意:这只是一种解决方法,而非解决方案。