community.digitalocean.digital_ocean_project_info 模块 – 收集 DigitalOcean 项目的信息

注意

此模块是 community.digitalocean 集合(版本 1.27.0)的一部分。

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

要安装它,请使用:ansible-galaxy collection install community.digitalocean

要在 Playbook 中使用它,请指定:community.digitalocean.digital_ocean_project_info

community.digitalocean 1.6.0 中的新增功能

概要

  • 此模块可用于收集有关项目的信息。

参数

参数

注释

baseurl

字符串

DigitalOcean API 基本 URL。

默认值: "https://api.digitalocean.com/v2"

id

字符串

可用于标识和引用项目的项目 ID。

name

字符串

可用于标识和引用项目的项目名称。

oauth_token

别名:api_token

字符串

DigitalOcean OAuth 令牌。

还有几个其他的环境变量可用于提供此值。

例如,- DO_API_TOKEN, DO_API_KEY, DO_OAUTH_TOKENOAUTH_TOKEN

timeout

整数

用于轮询 DigitalOcean API 的超时时间(以秒为单位)。

默认值: 30

validate_certs

布尔值

如果设置为 no,则不会验证 SSL 证书。

此设置应仅在个人控制的站点上使用自签名证书时设置为 no

选择

  • false

  • true ← (默认)

示例

# Get specific project by id
- community.digitalocean.digital_ocean_project_info:
    id: cb1ef55e-3cd8-4c7c-aa5d-07c32bf41627

# Get specific project by name
- community.digitalocean.digital_ocean_project_info:
    name: my-project-name

# Get all projects
- community.digitalocean.digital_ocean_project_info:
  register: projects

返回值

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

描述

data

列表 / 元素=字典

DigitalOcean 项目信息

返回:成功

示例: [{"created_at": "2021-03-11T00:00:00Z", "description": "我的项目描述", "environment": "开发", "id": "12345678-abcd-efgh-5678-10111213", "is_default": false, "name": "my-test-project", "owner_id": 12345678, "owner_uuid": "12345678-1234-4321-abcd-20212223", "purpose": "", "updated_at": "2021-03-11T00:00:00Z"}]

作者

  • Tyler Auerbeck (@tylerauerbeck)