community.general.gitlab_group_access_token 模块 – 管理 GitLab 群组访问令牌
注意
此模块是 community.general 集合(版本 10.1.0)的一部分。
如果您正在使用 ansible
包,您可能已经安装了此集合。 它不包含在 ansible-core
中。 要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install community.general
。您需要进一步的要求才能使用此模块,有关详细信息,请参阅 要求。
要在 playbook 中使用它,请指定:community.general.gitlab_group_access_token
。
community.general 8.4.0 中的新增功能
概要
创建和撤销群组访问令牌。
要求
在执行此模块的主机上需要满足以下要求。
python-gitlab >= 3.1.0
requests(Python 库 https://pypi.ac.cn/project/requests/)
参数
参数 |
注释 |
---|---|
访问令牌的访问级别。 选择
|
|
用于登录的 GitLab CI 作业令牌。 |
|
用于登录的 GitLab OAuth 令牌。 |
|
用于针对 API 进行身份验证的密码。 |
|
具有 API 权限的 GitLab 访问令牌。 |
|
API 的可解析端点。 |
|
用于针对 API 进行身份验证的用户名。 |
|
用于验证 GitLab 服务器证书的 CA 证书捆绑包。 |
|
访问令牌的到期日期,格式为 确保在 YAML 中引用此值,以确保它保持为字符串而不是被解释为 YAML 日期。 |
|
群组的 ID 或完整路径,格式为 group/subgroup。 |
|
访问令牌的名称。 |
|
如果访问令牌已存在,是否重新创建该令牌。 当为 当为 当为 选择
|
|
访问令牌的范围。 选择
|
|
当为 当为 选择
|
|
当提供 HTTPS 端点时,是否验证 SSL 证书。 选择
|
属性
属性 |
支持 |
描述 |
---|---|---|
支持:完全 |
可以在 |
|
支持:无 |
当处于 diff 模式时,将返回有关已更改内容(或可能需要在 |
备注
示例
- name: "Creating a group access token"
community.general.gitlab_group_access_token:
api_url: https://gitlab.example.com/
api_token: "somegitlabapitoken"
group: "my_group/my_subgroup"
name: "group_token"
expires_at: "2024-12-31"
access_level: developer
scopes:
- api
- read_api
- read_repository
- write_repository
state: present
- name: "Revoking a group access token"
community.general.gitlab_group_access_token:
api_url: https://gitlab.example.com/
api_token: "somegitlabapitoken"
group: "my_group/my_group"
name: "group_token"
expires_at: "2024-12-31"
scopes:
- api
- read_api
- read_repository
- write_repository
state: absent
- name: "Change (recreate) existing token if its actual state is different than desired state"
community.general.gitlab_group_access_token:
api_url: https://gitlab.example.com/
api_token: "somegitlabapitoken"
group: "my_group/my_group"
name: "group_token"
expires_at: "2024-12-31"
scopes:
- api
- read_api
- read_repository
- write_repository
recreate: state_change
state: present
返回值
通用返回值在这里文档中有说明,以下是此模块独有的字段
键 |
描述 |
---|---|