Re: [ansible-project] Variable of variable doesn't work in ansible 1.4

2016-07-16 Thread Iliya Strakovich
Dmitry, You really saved my day !!! -- 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-project+unsubscr...@googlegroups.com. To post to this group,

Re: [ansible-project] Variable of variable doesn't work in ansible 1.4

2014-10-29 Thread Sankalp Khare
I second Giorgio. Dmitry, you're a lifesaver :D On Friday, 6 December 2013 03:46:13 UTC-6, Giorgio Crivellari wrote: Dmitry you're a f* genius!! Michael, please add Dimitry example in variables website documentation page... many users will appreciate! Thanks guys! Giorgio Il

Re: [ansible-project] Variable of variable doesn't work in ansible 1.4

2013-12-05 Thread Giorgio Crivellari
Hi Michael, thanks for you response and for this awesome tool! We're using it for deployment jobs, as post-build of jenkins jobs, and we're trying to do something like this: -- job playbook --- - vars: devel: host: host02 prod: host: host01 hosts:

Re: [ansible-project] Variable of variable doesn't work in ansible 1.4

2013-12-05 Thread Dmitry Horbach
Hi Michael, We are also using double evaluation in many places - mostly to not repeat definitions of the same variable *Example 1* user.yml - user uid values userA: 800 userB: 801 main.yml - role variables user: userA user_uid: ${${user}} # will be resolved to 800 *Example 2* type1_data:

Re: [ansible-project] Variable of variable doesn't work in ansible 1.4

2013-12-05 Thread Michael DeHaan
I feel like I've answered this a lot in the last 2 days, see the archives and we can add an entry in the FAQ. -- Michael On Dec 5, 2013, at 4:29 PM, Dmitry Horbach dim.horb...@gmail.com wrote: Hi Michael, We are also using double evaluation in many places - mostly to not repeat definitions of