Escape characters in Jinja2 Ansible
I am trying to create a Jinja2 Template to be used in an Ansible role and I really don't know how to escape double quotes in this template.
My code is like this:
{% for site in sites %}
testclass="HTTPSamplerProxy" testname="{{ site.path }}" enabled="true">
My variable is site.path and when I am adding double quotes ("") is not taken as a variable anymore.
How can I escape does character?
ansible jinja2 ansible-template
add a comment |
I am trying to create a Jinja2 Template to be used in an Ansible role and I really don't know how to escape double quotes in this template.
My code is like this:
{% for site in sites %}
testclass="HTTPSamplerProxy" testname="{{ site.path }}" enabled="true">
My variable is site.path and when I am adding double quotes ("") is not taken as a variable anymore.
How can I escape does character?
ansible jinja2 ansible-template
add a comment |
I am trying to create a Jinja2 Template to be used in an Ansible role and I really don't know how to escape double quotes in this template.
My code is like this:
{% for site in sites %}
testclass="HTTPSamplerProxy" testname="{{ site.path }}" enabled="true">
My variable is site.path and when I am adding double quotes ("") is not taken as a variable anymore.
How can I escape does character?
ansible jinja2 ansible-template
I am trying to create a Jinja2 Template to be used in an Ansible role and I really don't know how to escape double quotes in this template.
My code is like this:
{% for site in sites %}
testclass="HTTPSamplerProxy" testname="{{ site.path }}" enabled="true">
My variable is site.path and when I am adding double quotes ("") is not taken as a variable anymore.
How can I escape does character?
ansible jinja2 ansible-template
ansible jinja2 ansible-template
edited Nov 19 '18 at 18:46
priyanshi srivastava
936520
936520
asked Nov 19 '18 at 13:09
razvanlirazvanli
52
52
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I am assuming sites is a list of dictionaries which includes a key called "path"
The following works for me where sites is a list of dictionaries:
{% for site in sites.values() %}
testclass="HTTPSamplerProxy" testname="{{ site.path }}" enabled="true">
{% endfor %}
The rendered template contains a "testclass" line for each dictionary in the list and site.path is interpolated
Site.path is indeed a variable from a list of dictionaries, but this works well and is correct. The problem is that I need the result of the value to have double quotes . In the example you posted, same as mine, site.path will not be seen as a variable anymore because of the quotes. I also tried with 2 double quotes, with /, but without success. I cannot escape them testname=""{{ site.path }}"" testname="{{ site.path }}"
– razvanli
Nov 20 '18 at 5:58
Can you provide some sample data and the output you need rendered? I am getting double quotes AND the variable value in my output from my test code. Thanks
– Daniel Leonard
Nov 20 '18 at 6:46
add a comment |
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/3.0/"u003ecc by-sa 3.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%2f53375355%2fescape-characters-in-jinja2-ansible%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I am assuming sites is a list of dictionaries which includes a key called "path"
The following works for me where sites is a list of dictionaries:
{% for site in sites.values() %}
testclass="HTTPSamplerProxy" testname="{{ site.path }}" enabled="true">
{% endfor %}
The rendered template contains a "testclass" line for each dictionary in the list and site.path is interpolated
Site.path is indeed a variable from a list of dictionaries, but this works well and is correct. The problem is that I need the result of the value to have double quotes . In the example you posted, same as mine, site.path will not be seen as a variable anymore because of the quotes. I also tried with 2 double quotes, with /, but without success. I cannot escape them testname=""{{ site.path }}"" testname="{{ site.path }}"
– razvanli
Nov 20 '18 at 5:58
Can you provide some sample data and the output you need rendered? I am getting double quotes AND the variable value in my output from my test code. Thanks
– Daniel Leonard
Nov 20 '18 at 6:46
add a comment |
I am assuming sites is a list of dictionaries which includes a key called "path"
The following works for me where sites is a list of dictionaries:
{% for site in sites.values() %}
testclass="HTTPSamplerProxy" testname="{{ site.path }}" enabled="true">
{% endfor %}
The rendered template contains a "testclass" line for each dictionary in the list and site.path is interpolated
Site.path is indeed a variable from a list of dictionaries, but this works well and is correct. The problem is that I need the result of the value to have double quotes . In the example you posted, same as mine, site.path will not be seen as a variable anymore because of the quotes. I also tried with 2 double quotes, with /, but without success. I cannot escape them testname=""{{ site.path }}"" testname="{{ site.path }}"
– razvanli
Nov 20 '18 at 5:58
Can you provide some sample data and the output you need rendered? I am getting double quotes AND the variable value in my output from my test code. Thanks
– Daniel Leonard
Nov 20 '18 at 6:46
add a comment |
I am assuming sites is a list of dictionaries which includes a key called "path"
The following works for me where sites is a list of dictionaries:
{% for site in sites.values() %}
testclass="HTTPSamplerProxy" testname="{{ site.path }}" enabled="true">
{% endfor %}
The rendered template contains a "testclass" line for each dictionary in the list and site.path is interpolated
I am assuming sites is a list of dictionaries which includes a key called "path"
The following works for me where sites is a list of dictionaries:
{% for site in sites.values() %}
testclass="HTTPSamplerProxy" testname="{{ site.path }}" enabled="true">
{% endfor %}
The rendered template contains a "testclass" line for each dictionary in the list and site.path is interpolated
answered Nov 20 '18 at 5:39
Daniel LeonardDaniel Leonard
11
11
Site.path is indeed a variable from a list of dictionaries, but this works well and is correct. The problem is that I need the result of the value to have double quotes . In the example you posted, same as mine, site.path will not be seen as a variable anymore because of the quotes. I also tried with 2 double quotes, with /, but without success. I cannot escape them testname=""{{ site.path }}"" testname="{{ site.path }}"
– razvanli
Nov 20 '18 at 5:58
Can you provide some sample data and the output you need rendered? I am getting double quotes AND the variable value in my output from my test code. Thanks
– Daniel Leonard
Nov 20 '18 at 6:46
add a comment |
Site.path is indeed a variable from a list of dictionaries, but this works well and is correct. The problem is that I need the result of the value to have double quotes . In the example you posted, same as mine, site.path will not be seen as a variable anymore because of the quotes. I also tried with 2 double quotes, with /, but without success. I cannot escape them testname=""{{ site.path }}"" testname="{{ site.path }}"
– razvanli
Nov 20 '18 at 5:58
Can you provide some sample data and the output you need rendered? I am getting double quotes AND the variable value in my output from my test code. Thanks
– Daniel Leonard
Nov 20 '18 at 6:46
Site.path is indeed a variable from a list of dictionaries, but this works well and is correct. The problem is that I need the result of the value to have double quotes . In the example you posted, same as mine, site.path will not be seen as a variable anymore because of the quotes. I also tried with 2 double quotes, with /, but without success. I cannot escape them testname=""{{ site.path }}"" testname="{{ site.path }}"
– razvanli
Nov 20 '18 at 5:58
Site.path is indeed a variable from a list of dictionaries, but this works well and is correct. The problem is that I need the result of the value to have double quotes . In the example you posted, same as mine, site.path will not be seen as a variable anymore because of the quotes. I also tried with 2 double quotes, with /, but without success. I cannot escape them testname=""{{ site.path }}"" testname="{{ site.path }}"
– razvanli
Nov 20 '18 at 5:58
Can you provide some sample data and the output you need rendered? I am getting double quotes AND the variable value in my output from my test code. Thanks
– Daniel Leonard
Nov 20 '18 at 6:46
Can you provide some sample data and the output you need rendered? I am getting double quotes AND the variable value in my output from my test code. Thanks
– Daniel Leonard
Nov 20 '18 at 6:46
add a comment |
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%2f53375355%2fescape-characters-in-jinja2-ansible%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