community.crypto.gpg_fingerprint 过滤器 – 从 GPG 公钥或私钥中检索 GPG 指纹
注意
此过滤器插件是 community.crypto 集合(版本 2.22.3)的一部分。
如果您使用 ansible
包,则可能已经安装了此集合。它不包含在 ansible-core
中。要检查它是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install community.crypto
。您需要满足其他要求才能使用此过滤器插件,有关详细信息,请参见要求。
要在 Playbook 中使用它,请指定:community.crypto.gpg_fingerprint
。
community.crypto 2.15.0 中的新增功能
概要
将私钥或公钥 GPG 密钥的内容作为输入,并返回其指纹。
要求
在执行此过滤器的本地控制器节点上需要满足以下要求。
GnuPG(
gpg
可执行文件)
输入
这描述了过滤器的输入,即 | community.crypto.gpg_fingerprint
之前的值。
参数 |
注释 |
---|---|
GPG 公钥或私钥的内容。 |
另请参阅
另请参阅
- community.crypto.gpg_fingerprint 查找插件
从 GPG 公钥或私钥文件中检索 GPG 指纹。
示例
- name: Show fingerprint of GPG public key
ansible.builtin.debug:
msg: "{{ lookup('file', '/path/to/public_key.gpg') | community.crypto.gpg_fingerprint }}"
返回值
键 |
描述 |
---|---|
提供的公钥或私钥 GPG 密钥的指纹。 返回: 成功 |