On Wed, Mar 07, 2018 at 09:07:53PM +0000, neccro...@gmail.com wrote:
So it looks like ansible is unable to get the variable out of the encrypted
file ... but WHY ?

Brian provided a clue in his answer, but to make it more explicit: root_pass_sirius is not correctly declared.
Instead of:
root_pass_sirius: "{{ TesT1234 }}"
it should be:
root_pass_sirius: "TesT1234"

You want the password to have the value "TesT1234" - in the incorrect declaration, it's being set to the value of a variable called TesT1234, which doesn't exist. Remove the {{ }} and it'll work.

Cheers, MJ
--
Michael-John Turner * m...@mjturner.net * http://mjturner.net/
--
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, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/20180308081840.sibwxjthxoi36vgl%40saucer.turnde.net.
For more options, visit https://groups.google.com/d/optout.

Reply via email to