diff --git a/changelogs/fragments/9833-data-tagging.yml b/changelogs/fragments/9833-data-tagging.yml new file mode 100644 index 0000000000..554d278df3 --- /dev/null +++ b/changelogs/fragments/9833-data-tagging.yml @@ -0,0 +1,2 @@ +bugfixes: + - "dependent look plugin - make compatible with ansible-core's Data Tagging feature (https://github.com/ansible-collections/community.general/pull/9833)." diff --git a/plugins/lookup/dependent.py b/plugins/lookup/dependent.py index 1ec4369b32..2b7f293872 100644 --- a/plugins/lookup/dependent.py +++ b/plugins/lookup/dependent.py @@ -130,12 +130,24 @@ from ansible.template import Templar from ansible_collections.community.general.plugins.module_utils.version import LooseVersion +try: + from ansible.template import trust_as_template as _trust_as_template + HAS_DATATAGGING = True +except ImportError: + HAS_DATATAGGING = False + # Whether Templar has a cache, which can be controlled by Templar.template()'s cache option. # The cache was removed for ansible-core 2.14 (https://github.com/ansible/ansible/pull/78419) _TEMPLAR_HAS_TEMPLATE_CACHE = LooseVersion(ansible_version) < LooseVersion('2.14.0') +def _make_safe(value): + if HAS_DATATAGGING and isinstance(value, str): + return _trust_as_template(value) + return value + + class LookupModule(LookupBase): def __evaluate(self, expression, templar, variables): """Evaluate expression with templar. @@ -144,10 +156,13 @@ class LookupModule(LookupBase): ``variables`` are the variables to use. """ templar.available_variables = variables or {} - expression = "{0}{1}{2}".format("{{", expression, "}}") + quoted_expression = "{0}{1}{2}".format("{{", expression, "}}") if _TEMPLAR_HAS_TEMPLATE_CACHE: - return templar.template(expression, cache=False) - return templar.template(expression) + return templar.template(quoted_expression, cache=False) + if hasattr(templar, 'evaluate_expression'): + # This is available since the Data Tagging PR has been merged + return templar.evaluate_expression(_make_safe(expression)) + return templar.template(quoted_expression) def __process(self, result, terms, index, current, templar, variables): """Fills ``result`` list with evaluated items.