MM> The problem is that cannot nest jinja brackets inside of brackets. 

Ah! Right, because brackets mean "Jinja", not just "variable". Still new
here. :^)

MM> Your following example:
MM>
MM>   {{ ansible_hostname | regex_replace("^{{service}}-{{site}}-", '') }}
MM>
MM> Should probably be:
MM>
MM>   {{ ansible_hostname | regex_replace("^" + service + "-" + site + "-", '')
MM> }}
MM>
MM> Inside of {{ }} variables are already expanded.

That works! Well, it turns out I was defining my variables wrong in this
example, but when I changed

  vars: { service="abc", site="bos" }

to the less wrong

  vars: 
    service: "abc"
    site: "bos"

it worked perfectly, both in the debug example and in the actual route53
module.

Yay Ansible! Yay ansible-project! Thanks Matt!

                                      -Josh ([email protected])



This email is intended for the person(s) to whom it is addressed and may 
contain information that is PRIVILEGED or CONFIDENTIAL. Any unauthorized use, 
distribution, copying, or disclosure by any person other than the addressee(s) 
is strictly prohibited. If you have received this email in error, please notify 
the sender immediately by return email and delete the message and any 
attachments from your system.

-- 
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/21630.12316.250863.116964%40gargle.gargle.HOWL.
For more options, visit https://groups.google.com/d/optout.

Reply via email to