community.digitalocean.digital_ocean_droplet_info 模块 – 收集 DigitalOcean Droplet 的信息
注意
此模块是 community.digitalocean 集合(版本 1.27.0)的一部分。
如果您使用的是 ansible
包,您可能已经安装了此集合。它不包含在 ansible-core
中。要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install community.digitalocean
。
要在 playbook 中使用它,请指定:community.digitalocean.digital_ocean_droplet_info
。
community.digitalocean 1.4.0 中的新功能
概要
此模块可用于收集有关 Droplet 的信息。
参数
参数 |
注释 |
---|---|
DigitalOcean API 基本 URL。 默认值: |
|
可用于识别和引用 droplet 的 Droplet ID。 |
|
可用于识别和引用 droplet 的 Droplet 名称。 |
|
DigitalOcean OAuth 令牌。 还有几个其他环境变量可用于提供此值。 例如,- |
|
用于轮询 DigitalOcean API 的超时时间(以秒为单位)。 默认值: |
|
如果设置为 这应该仅在个人控制的使用自签名证书的站点上设置为 选择
|
示例
- name: Gather information about all droplets
community.digitalocean.digital_ocean_droplet_info:
oauth_token: "{{ oauth_token }}"
- name: Gather information about a specific droplet by name
community.digitalocean.digital_ocean_droplet_info:
oauth_token: "{{ oauth_token }}"
name: my-droplet-name
- name: Gather information about a specific droplet by id
community.digitalocean.digital_ocean_droplet_info:
oauth_token: "{{ oauth_token }}"
id: abc-123-d45
- name: Get information about all droplets to loop through
community.digitalocean.digital_ocean_droplet_info:
oauth_token: "{{ oauth_token }}"
register: droplets
- name: Get number of droplets
set_fact:
droplet_count: "{{ droplets.data | length }}"
返回值
常用返回值记录在此处,以下是此模块独有的字段
键 |
描述 |
---|---|
DigitalOcean droplet 信息 返回: 成功 示例: |