hetzner.hcloud.ssh_key_info 模块 – 收集关于您的 Hetzner Cloud ssh_keys 的信息。

注意

此模块是 hetzner.hcloud 集合(版本 4.2.2)的一部分。

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

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

要在 playbook 中使用它,请指定:hetzner.hcloud.ssh_key_info

概要

  • 收集关于您的 Hetzner Cloud ssh_keys 的事实信息。

别名:hcloud_ssh_key_info

要求

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

  • python-dateutil >= 2.7.5

  • requests >=2.20

参数

参数

注释

api_endpoint

别名:endpoint

字符串

Hetzner Cloud 的 API 端点。

您还可以使用 HCLOUD_ENDPOINT 环境变量设置此选项。

默认值: "https://api.hetzner.cloud/v1"

api_token

字符串 / 必需

Hetzner Cloud 的 API 令牌。

您还可以使用 HCLOUD_TOKEN 环境变量设置此选项。

fingerprint

字符串

您要获取的 SSH 密钥的指纹。

id

整数

您要获取的 SSH 密钥的 ID。

如果提供的 ID 无效,模块将失败。

label_selector

字符串

您要获取的 SSH 密钥的标签选择器。

name

字符串

您要获取的 SSH 密钥的名称。

参见

另请参阅

Hetzner Cloud API 的文档

Hetzner Cloud API 的完整参考。

示例

- name: Gather hcloud sshkey infos
  hetzner.hcloud.ssh_key_info:
  register: output
- name: Print the gathered infos
  debug:
    var: output.hcloud_ssh_key_info

返回值

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

描述

hcloud_ssh_key_info

复杂

SSH 密钥实例

返回值: 始终

fingerprint

字符串

SSH 密钥的指纹

返回值: 始终

示例: "0e:e0:bd:c7:2d:1f:69:49:94:44:91:f1:19:fd:35:f3"

id

整数

ssh_key 的数字标识符

返回值: 始终

示例: 1937415

labels

字典

用户定义的标签(键值对)

返回值: 始终

name

字符串

ssh_key 的名称

返回值: 始终

示例: "my-ssh-key"

public_key

字符串

实际的公钥

返回值: 始终

示例: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGpl/tnk74nnQJxxLAtutUApUZMRJxryKh7VXkNbd4g9 [email protected]"

作者

  • Christopher Schmitt (@cschmitt-hcloud)