How do I correctly interpolate variables in Ansible var files through a for loop in Jinja2Ansible loop through group vars in templateHow to convert a variable value on the fly in Ansible/Jinja2 template?Set Ansible variable to undefined through extra-vars or inventory variableAnsible/Jinja2 how to append key into list of dictIs there an Ansible/Jinja2 subgroup variables unique filter?Jinja2 Templating: Conditionally forming a set from Ansible VariablesHow to check whether a list is defined in Jinja2 ansible variable inside IF condition?Pushing items to a var while looping over another var in Ansible Jinja2 templateLoop through Ansible variable in in .j2 fileAnsible looping through values specified in a file
How to justify a team increase when the team is doing good?
Hilbert's hotel: why can't I repeat it infinitely many times?
Comma Code - Automate the Boring Stuff with Python
Should I answer honestly if asked why I was late one day when I was actually in an interview?
Meaning of 'ran' in German?
How do pilots align the HUD with their eyeballs?
How 象【しょう】 ( ≈かたち、 すがた、ようす) and 象【ぞう】 (どうぶつ) got to be written with the same kanji?
What is the difference between 「変更」 and 「変化」?
Going to France with limited French for a day
Does the Prepare Food ability from Cook's Utensils stack?
If an object moving in a circle experiences centripetal force, then doesn't it also experience centrifugal force, because of Newton's third law?
Safe to use 220V electric clothes dryer when building has been bridged down to 110V?
To what extent is it worthwhile to report check fraud / refund scams?
Does HSTS protect against a rogue CA issuing a illegitimate valid certificate?
while loop factorial only works up to 20?
Should the average user with no special access rights be worried about SMS-based 2FA being theoretically interceptable?
Should we use wheatstone bridges nowadays?
Do we know the situation in Britain before Sealion (summer 1940)?
extracting sublists
What is the meaning of "heutig" in this sentence?
On the meaning of 'anyways' in "What Exactly Is a Quartz Crystal, Anyways?"
How to create fractional SI units (SI...sqrts)?
How can I repair this gas leak on my new range? Teflon tape isn't working
Why does NASA publish all the results/data it gets?
How do I correctly interpolate variables in Ansible var files through a for loop in Jinja2
Ansible loop through group vars in templateHow to convert a variable value on the fly in Ansible/Jinja2 template?Set Ansible variable to undefined through extra-vars or inventory variableAnsible/Jinja2 how to append key into list of dictIs there an Ansible/Jinja2 subgroup variables unique filter?Jinja2 Templating: Conditionally forming a set from Ansible VariablesHow to check whether a list is defined in Jinja2 ansible variable inside IF condition?Pushing items to a var while looping over another var in Ansible Jinja2 templateLoop through Ansible variable in in .j2 fileAnsible looping through values specified in a file
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Ansible Vars file to be interpolated after being run against jinja2, but leaving literal string in the vars file
I have a vars file in Ansible that I'm using to interpolate as a applications.yml file. I want the elb.host variable to be set in the applications.yml as the ELB address, however, jinja2 is not interpolating and it's just setting the value as the literal string
" elb_name "
Is there a way I can set up an Ansible task to interpolate elb_name within the var file during the for loop that is iterating through service_ext_props?
services (var file). The elb_name is a var that is defined in a separate var file already
service_ext_props:
elb.host: " elb_name "
I also have a services.yml.j2 file that iterates through:
% for key, value in service_ext_props.iteritems() %
key : * value *
% endfor %
ansible
add a comment
|
Ansible Vars file to be interpolated after being run against jinja2, but leaving literal string in the vars file
I have a vars file in Ansible that I'm using to interpolate as a applications.yml file. I want the elb.host variable to be set in the applications.yml as the ELB address, however, jinja2 is not interpolating and it's just setting the value as the literal string
" elb_name "
Is there a way I can set up an Ansible task to interpolate elb_name within the var file during the for loop that is iterating through service_ext_props?
services (var file). The elb_name is a var that is defined in a separate var file already
service_ext_props:
elb.host: " elb_name "
I also have a services.yml.j2 file that iterates through:
% for key, value in service_ext_props.iteritems() %
key : * value *
% endfor %
ansible
Your question is horrifically confusing; can you show an example of what output you would expect, and clean up your question to show what -- exactly -- is the input you are providing?
– Matthew L Daniel
Apr 1 at 2:40
add a comment
|
Ansible Vars file to be interpolated after being run against jinja2, but leaving literal string in the vars file
I have a vars file in Ansible that I'm using to interpolate as a applications.yml file. I want the elb.host variable to be set in the applications.yml as the ELB address, however, jinja2 is not interpolating and it's just setting the value as the literal string
" elb_name "
Is there a way I can set up an Ansible task to interpolate elb_name within the var file during the for loop that is iterating through service_ext_props?
services (var file). The elb_name is a var that is defined in a separate var file already
service_ext_props:
elb.host: " elb_name "
I also have a services.yml.j2 file that iterates through:
% for key, value in service_ext_props.iteritems() %
key : * value *
% endfor %
ansible
Ansible Vars file to be interpolated after being run against jinja2, but leaving literal string in the vars file
I have a vars file in Ansible that I'm using to interpolate as a applications.yml file. I want the elb.host variable to be set in the applications.yml as the ELB address, however, jinja2 is not interpolating and it's just setting the value as the literal string
" elb_name "
Is there a way I can set up an Ansible task to interpolate elb_name within the var file during the for loop that is iterating through service_ext_props?
services (var file). The elb_name is a var that is defined in a separate var file already
service_ext_props:
elb.host: " elb_name "
I also have a services.yml.j2 file that iterates through:
% for key, value in service_ext_props.iteritems() %
key : * value *
% endfor %
ansible
ansible
asked Mar 28 at 17:29
danipadanipa
171 bronze badge
171 bronze badge
Your question is horrifically confusing; can you show an example of what output you would expect, and clean up your question to show what -- exactly -- is the input you are providing?
– Matthew L Daniel
Apr 1 at 2:40
add a comment
|
Your question is horrifically confusing; can you show an example of what output you would expect, and clean up your question to show what -- exactly -- is the input you are providing?
– Matthew L Daniel
Apr 1 at 2:40
Your question is horrifically confusing; can you show an example of what output you would expect, and clean up your question to show what -- exactly -- is the input you are providing?
– Matthew L Daniel
Apr 1 at 2:40
Your question is horrifically confusing; can you show an example of what output you would expect, and clean up your question to show what -- exactly -- is the input you are providing?
– Matthew L Daniel
Apr 1 at 2:40
add a comment
|
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55403666%2fhow-do-i-correctly-interpolate-variables-in-ansible-var-files-through-a-for-loop%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55403666%2fhow-do-i-correctly-interpolate-variables-in-ansible-var-files-through-a-for-loop%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Your question is horrifically confusing; can you show an example of what output you would expect, and clean up your question to show what -- exactly -- is the input you are providing?
– Matthew L Daniel
Apr 1 at 2:40