I have vars where I put something like this:

vars/main.yml

hello_port: 80

world_port: 81


in my ansbile file I load the vars with 
  vars_files:
     - ./vars/main.yml

and after that I have task with iterate using with_items:

     - debug:
          msg: "{{ (item + '_port') }}"
       with_items: "{{ m_name }}"

But I've got as output 
hello_port
world_port

not the values. 
Is there a way to evaluate the dynamically created variables name - to get 
the value?

-- 
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/74cd871e-f961-4b71-a06d-3817f0162997%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to