In Ansible, how can I combine a default dictionary in a role with a dictionary passed to that role as an argument?

泄露秘密 提交于 2019-12-01 03:23:23

问题


In Ansible, how can I combine a default dictionary in a role with a dictionary passed to that role as an argument?


回答1:


As a solution by example, consider role nginx-reverse-proxy:

nginx-reverse-proxy/defaults/main.yml:

default_nginx:
  application_context: /{{ application_name }}-{{ application_component_name }}
  reverse_proxy:
    port: 8080

nginx-reverse-proxy/templates/reverse-proxy.conf:

{% set combined_nginx = default_nginx | combine(nginx, recursive=true) -%}
location {{ combined_nginx.application_context }} {
        proxy_pass http://localhost:{{ combined_nginx.reverse_proxy.port }};
        proxy_set_header X-Forwarded-Host $host;
        proxy_set_header X-Forwarded-Server $host;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}

my-nginx-reverse-proxy-meta/main.yml:

dependencies:
  - selfcertification-service
  - role: nginx-reverse-proxy
    nginx: { reverse_proxy: { port: 8095 } }


来源:https://stackoverflow.com/questions/41247778/in-ansible-how-can-i-combine-a-default-dictionary-in-a-role-with-a-dictionary-p

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!