I have 2 arrays
"containers": [
"ContainerA",
"ContainerA",
"ContainerB",
"ContainerB"
]
"apps": [
"app2",
"app1",
"app2",
"app1"
]
I would like to merge them into an array of dictionaries like this ( I assume with set_fact ):
services:
- { container: 'ContainerA', app: 'app2' }
- { container: 'ContainerA', app: 'app1' }
- { container: 'ContainerB', app: 'app2' }
- { container: 'ContainerB', app: 'app1' }How can I do that?
--
You received this message because you are subscribed to the Google Groups "Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ansible-proje...@googlegroups.com.
To post to this group, send email to ansible...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/234b0651-72ac-4cdf-ba01-2283cdc5f425%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
I plan to use it in a template like so:
{% for source in services %}
container={{source.container}}app={{source.app}}{% endfor %}To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/CAD8N0v8UvPkfG_1NZb7OLHKALcwLRXzhTrAY9LMPxyp%3DBHQvww%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/CAELhQndy1jN5KF32pHrLy4%3DBKhoGjsy0c_QmqMb11eJxim83cw%40mail.gmail.com.