JL> 3) Now, I need to use the variable passed on command line to get the
JL> variable from /vars/main.yml:
JL> {{ redis_password.{{ app_env }} }}
Yep, just the syntax is wrong. Two things:
(1) The {{ and }} marks just say "start parsing Jinja", so you don't ever
need to nest them.
(2) The dotted notation doesn't let you specify what's a literal and
what's a variable. (I think this is confusing, so I personally avoid
it, even though it does have the advantage of being pleasantly more
concise than brackets and quote marks.)
Try
{{ redis_password[app_env] }}
and see if that works. (If you wanted the literal string "app_env", you'd do
{{ redis_password['app_env'] }}
instead.)
-Josh (
j...@care.com)
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.