containers.podman.podman_secret_info 模块 – 收集关于 podman 密钥的信息

注意

此模块是 containers.podman 集合(版本 1.16.2)的一部分。

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

要安装它,请使用:ansible-galaxy collection install containers.podman。您需要进一步的要求才能使用此模块,请参阅 要求 以获取详细信息。

要在 playbook 中使用它,请指定:containers.podman.podman_secret_info

概要

  • 使用 podman inspect 命令收集有关 podman 密钥的信息。

要求

在执行此模块的主机上需要以下要求。

  • 主机上安装了 Podman

参数

参数

注释

executable

字符串

如果 podman 可执行文件不在运行 podman 的机器上的 $PATH 中,则指向该可执行文件的路径

默认值: "podman"

name

字符串

密钥的名称

showsecret

布尔值

显示密钥数据值

选项

  • false ←(默认)

  • true

示例

- name: Gather info about all present secrets
  podman_secret_info:

- name: Gather info about specific secret
  podman_secret_info:
    name: specific_secret

返回值

常见的返回值记录在这里,以下是此模块特有的字段

描述

secrets

列表 / 元素=字符串

来自所有或指定密钥的事实

返回值:总是

示例: [{"CreatedAt": "2024-01-28T20:32:08.31857841+02:00", "ID": "06068c676e9a7f1c7dc0da8dd", "Spec": {"Driver": {"Name": "file", "Options": {"path": "/home/user/.local/share/containers/storage/secrets/filedriver"}}, "Labels": {}, "Name": "secret_name"}, "UpdatedAt": "2024-01-28T20:32:08.31857841+02:00"}]

作者

  • Sagi Shnaidman (@sshnaidm)