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
之前的值。
参数 |
注释 |
---|---|
要取消引号的字符串。 |
关键字参数
这描述了过滤器的关键字参数。 这些是以下示例中的值 key1=value1
, key2=value2
等等: input | community.dns.unquote_txt(key1=value1, key2=value2, ...)
参数 |
注释 |
---|---|
示例
- 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"
返回值
键 |
描述 |
---|---|
提取的字符串。 返回: 成功 |