hetzner.hcloud.primary_ip 模块 – 在 Hetzner Cloud 上创建和管理云主 IP。
注意
此模块是 hetzner.hcloud 集合 (版本 4.2.2) 的一部分。
如果您正在使用 ansible
包,则可能已经安装了此集合。它不包含在 ansible-core
中。要检查它是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install hetzner.hcloud
。您需要其他要求才能使用此模块,有关详细信息,请参阅 需求。
要在 playbook 中使用它,请指定:hetzner.hcloud.primary_ip
。
hetzner.hcloud 1.8.0 中的新增功能
概要
在 Hetzner Cloud 上创建、更新和管理云主 IP。
别名:hcloud_primary_ip
需求
执行此模块的主机需要以下需求。
python-dateutil >= 2.7.5
requests >=2.20
参数
参数 |
注释 |
---|---|
Hetzner Cloud 的 API 端点。 您也可以使用 默认值: |
|
Hetzner Cloud 的 API 令牌。 您也可以使用 |
|
在分配给它的资源被删除时删除主 IP。 选项
|
|
Hetzner Cloud 主 IP 的位置。 如果没有给出 *server* 且主 IP 不存在,则需要此参数。 |
|
保护主 IP 不被删除。 选项
|
|
要管理的 Hetzner Cloud 主 IP 的 ID。 如果没有给出主 IP *name*,则仅需此参数。 |
|
用户定义的标签(键值对)。 |
|
要管理的 Hetzner Cloud 主 IP 的名称。 如果没有给出主 IP *id* 或主 IP 不存在,则仅需此参数。 |
|
主 IP 的状态。 选项
|
|
主 IP 的类型。 如果主 IP 不存在,则需要此参数 选项
|
另请参阅
另请参阅
- Hetzner Cloud API 文档
Hetzner Cloud API 的完整参考。
示例
- name: Create a IPv4 Primary IP
hetzner.hcloud.primary_ip:
name: my-primary-ip
datacenter: fsn1-dc14
type: ipv4
state: present
- name: Create a IPv6 Primary IP
hetzner.hcloud.primary_ip:
name: my-primary-ip
datacenter: fsn1-dc14
type: ipv6
state: present
- name: Delete a Primary IP
hetzner.hcloud.primary_ip:
name: my-primary-ip
state: absent
- name: Ensure the server is stopped
hetzner.hcloud.server:
name: my-server
state: stopped
- name: Create a Primary IP attached to a Server
hetzner.hcloud.primary_ip:
name: my-primary-ip
server: my-server
type: ipv4
state: present
- name: Ensure the server is started
hetzner.hcloud.server:
name: my-server
state: started
返回值
常见的返回值已记录在 此处,以下是此模块特有的字段
键 |
描述 |
---|---|
主 IP 实例 返回:始终 |
|
分配给主 IP 的资源的 ID,如果未分配,则为 null。 返回:始终 示例: |
|
可以分配主 IP 的资源类型。 返回:始终 示例: |
|
在分配给它的资源被删除时删除主 IP。 返回:始终 示例: |
|
主 IP 数据中心的名称 返回:始终 示例: |
|
如果主 IP 受保护以防止删除,则为 True 返回:始终 示例: |
|
主 IP 的 ID 返回:始终 示例: |
|
主 IP 的 IP 地址 返回:始终 示例: |
|
用户定义的标签(键值对) 返回:始终 示例: |
|
主 IP 的名称 返回:始终 示例: |
|
主 IP 的类型 返回:始终 示例: |