restore inadvertently deleted default for convert_data. Fixes #77004 (#77016)

pull/77022/head
Matt Martz 3 years ago committed by GitHub
parent c9d3518d2f
commit 3779c1f278
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,3 @@
bugfixes:
- template lookup - restore inadvertently deleted default for ``convert_data``
(https://github.com/ansible/ansible/issues/77004)

@ -20,6 +20,7 @@ DOCUMENTATION = """
description:
- Whether to convert YAML into data. If False, strings that are YAML will be left untouched.
- Mutually exclusive with the jinja2_native option.
default: true
variable_start_string:
description: The string marking the beginning of a print statement.
default: '{{'

@ -25,3 +25,10 @@
- assert:
that:
- "hello_world_comment|trim == 'Hello world!'"
# 77004
- assert:
that:
- lookup('template', 'dict.j2') is mapping
- lookup('template', 'dict.j2', convert_data=True) is mapping
- lookup('template', 'dict.j2', convert_data=False) is not mapping

Loading…
Cancel
Save