google.cloud.gcp_sourcerepo_repository 模块 – 创建 GCP 仓库

注意

此模块是 google.cloud 集合(版本 1.4.1)的一部分。

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

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

要在 playbook 中使用它,请指定: google.cloud.gcp_sourcerepo_repository

注意

由于违反了 Ansible 包含要求,google.cloud 集合将从 Ansible 12 中删除。该集合具有 未解决的健全性测试失败。有关更多信息,请参阅 讨论线程

概要

  • 存储库(或 repo)是存储版本化源代码内容的 Git 存储库。

要求

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

  • python >= 2.6

  • requests >= 2.18.4

  • google-auth >= 1.3.0

参数

参数

注释

access_token

字符串

如果凭证类型为 accesstoken,则为 OAuth2 访问令牌。

auth_kind

字符串 / 必需

使用的凭证类型。

选择

  • "application"

  • "machineaccount"

  • "serviceaccount"

  • "accesstoken"

env_type

字符串

指定您在此模块中运行的 Ansible 环境。

除非您知道自己在做什么,否则不应设置此项。

这只会更改任何 API 请求的 User Agent 字符串。

name

字符串 / 必需

存储库的资源名称,格式为 projects/{{project}}/repos/{{repo}}。

存储库名称可以包含斜杠。例如,projects/myproject/repos/name/with/slash 。

project

字符串

要使用的 Google Cloud Platform 项目。

scopes

列表 / 元素=字符串

要使用的范围数组

service_account_contents

jsonarg

服务帐户 JSON 文件的内容,可以是字典或表示它的 JSON 字符串。

service_account_email

字符串

如果选择了 machineaccount 并且用户不希望使用默认电子邮件,则可以使用可选的服务帐户电子邮件地址。

service_account_file

路径

如果选择了 serviceaccount 作为类型,则为服务帐户 JSON 文件的路径。

state

字符串

给定对象是否应存在于 GCP 中

选择

  • "present" ←(默认)

  • "absent"

注释

注意

  • API 参考:https://cloud.google.com/source-repositories/docs/reference/rest/v1/projects.repos

  • 官方文档:https://cloud.google.com/source-repositories/

  • 对于身份验证,您可以使用 GCP_SERVICE_ACCOUNT_FILE 环境变量设置 service_account_file。

  • 对于身份验证,您可以使用 GCP_SERVICE_ACCOUNT_CONTENTS 环境变量设置 service_account_contents。

  • 对于身份验证,您可以使用 GCP_SERVICE_ACCOUNT_EMAIL 环境变量设置 service_account_email。

  • 对于身份验证,您可以使用 GCP_ACCESS_TOKEN 环境变量设置 access_token。

  • 对于身份验证,您可以使用 GCP_AUTH_KIND 环境变量设置 auth_kind。

  • 对于身份验证,您可以使用 GCP_SCOPES 环境变量设置 scopes。

  • 只有在未设置 playbook 值时才会使用环境变量值。

  • service_account_emailservice_account_file 选项是互斥的。

示例

- name: create a repository
  google.cloud.gcp_sourcerepo_repository:
    name: test_object
    project: test_project
    auth_kind: serviceaccount
    service_account_file: "/tmp/auth.pem"
    state: present

返回值

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

描述

name

字符串

存储库的资源名称,格式为 projects/{{project}}/repos/{{repo}}。

存储库名称可以包含斜杠。例如,projects/myproject/repos/name/with/slash 。

返回:成功

大小

整数

存储库的磁盘使用量(以字节为单位)。

返回:成功

url

字符串

从 Google Cloud Source Repositories 克隆存储库的 URL。

返回:成功

作者

  • Google Inc. (@googlecloudplatform)