Hi,

I've got a dictionary which looks like this:

    "var": {
        "nm_java_apps_params": {
            "nm-core": {
                "dest_folder": '/tmp/test'
                "port": 9487, 
                "start_options": " -Xmx16G -XX:+UseG1GC 
-XX:+UseStringDeduplication", 
                "version": "latest"
            }, 
            "nm-staticmaps": {
                "dest_folder": '/tmp/test'
                "port": 9462, 
                "start_options": "", 
                "war_name": "latest.war"
            }
        }
    }

In a role, I can access data like this:

{{ nm_java_apps_params['{{my_var}}']['dest_folder'] }}


However, when I'm trying in Jinja with the same way, I've got:

{'msg': "AnsibleUndefinedVariable: One or more undefined variables: 'dict 
object' has no attribute '{{my_var}}'", 'failed': True}

Any idea of what I missed here ?

Thanks in advance

-- 
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 [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/b75377f2-56d5-4e5e-8152-940c673760bc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to