I think this issue is because of you are trying to merge different data 
format please check you data format you have used at different places like 
group_vars and vars.

Regards/Surjeet

On Tuesday, April 16, 2019 at 1:54:46 PM UTC+5:30, Frank Fllr wrote:
>
> Hi,
>
> I need to loop over a directory with yml files all containing the same 
> variable names (dicts, list, simple vars) e.g.  
>
> ----  file1.yml  ----
> serviceconf:
>    document:
>         xxx: "{{ ansible_hostname }}":8080
>      
> proxyconf:
>    - /api/document
>
> ----  file2.yml  ----
> serviceconf:
>    portalcode:
>         val: "{{ binary_content_dir }}/special"
>      
> proxyconf:
>    - /api/portalcode
>    - /api/imports
>
>
> And would like to have as result: 
>
> serviceconf:
>    document:
>         xxx: "{{ ansible_hostname }}":8080
>    portalcode:
>         val: "{{ binary_content_dir }}/special"
>
> proxyconf:
>    - /api/document1
>    - /api/other1
>    - /api/portalcode
>    - /api/imports
>
> While searching on google, I found *include_vars_merged* action plugin (
> https://gist.github.com/udondan/b730206056a018cf9838) which I though 
> could be suitable for my task - but unfortunatly it is not compatible with 
> Ansible 2+.
>
> My question: Is there a possiblity to do the desired task (with standard 
> ansible means) or has someone developed a similiar *include_vars_merged* 
> for Ansible 2.7+ and like to share it?
>
>
> Tnx in advance
> Frank
>
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to ansible-devel+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to