community.dns.unquote_txt 过滤器 – 将 TXT 记录条目取消引用为字符串

注意

此过滤器插件是 community.dns 集合(版本 3.1.0)的一部分。

如果您正在使用 ansible 包,您可能已经安装了此集合。 它不包含在 ansible-core 中。 要检查它是否已安装,请运行 ansible-galaxy collection list

要安装它,请使用:ansible-galaxy collection install community.dns

要在 playbook 中使用它,请指定:community.dns.unquote_txt

community.dns 2.9.0 中的新增功能

概要

  • 给定一个(带引号的)TXT 条目内容,提取其值。

输入

这描述了过滤器的输入,即 | community.dns.unquote_txt 之前的值。

参数

注释

输入

string / 必需

要取消引号的字符串。

关键字参数

这描述了过滤器的关键字参数。 这些是以下示例中的值 key1=value1key2=value2 等等: input | community.dns.unquote_txt(key1=value1, key2=value2, ...)

参数

注释

character_encoding

string

是否将数字转义序列 (\xyz) 视为八进制或十进制数。

默认值 decimalRFC 1035 兼容。

选择

  • "decimal" ← (默认)

  • "octal"

示例

- name: Unquote a TXT entry
  ansible.builtin.set_fact:
    public_suffix: "{{ value | community.dns.unquote_txt }}"
    # Should result in 'this is a test'
  vars:
    value: >-
      "this is " "a test"

返回值

描述

返回值

string

提取的字符串。

返回: 成功

作者

  • Felix Fontein (@felixfontein)

提示

每个条目类型的配置条目都有一个从低到高的优先级顺序。 例如,列表中较低的变量将覆盖较高的变量。