import an variable file to another in ansible
问题 I am new to ansible. I have 2 variable files one is global and another is environment specific. Here is the global one in global/group_var/all.yaml folder: rel: deployment: webui: dockerName: "rel" dockerTag: "Dev_{{ travis.build_number }}" And the specific one is in develop/group_var/all.yaml folder docker: registery: "xxxx" is there any way I can import global/group_var/all.yaml to develop/group_var/all.yaml import global/group_var/all.yaml docker: registery: "xxxx" so develop/group_var/all