我们有两个变量文件,第一个文件带有常量,第二个变量来自生成的输出。
第一个文件.yml
---
prefix: test
第二个文件.yml
---
test_variable: 12345
在我们想调用 test_variable,但变量的形成应该是从 firstfile.yml 连接而不是"{{ test_variable }}"
例子:
- hosts: localhost
connection: local
vars:
constants: firstfile.yml
variables: seconfile.yml
vars_files:
- [ "{{ constants }}, {{ variables }}"
tasks:
name: test_name
field: "{{ prefix }}_variable"
错误:'test_variable' does not exist</Message></Error></Errors>