Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/antmelekhin/terraform-gitlab-group
A Terraform module to manage GitLab Groups.
https://github.com/antmelekhin/terraform-gitlab-group
gitlab gitlab-group iac terraform terraform-module
Last synced: 13 days ago
JSON representation
A Terraform module to manage GitLab Groups.
- Host: GitHub
- URL: https://github.com/antmelekhin/terraform-gitlab-group
- Owner: antmelekhin
- License: apache-2.0
- Created: 2023-10-25T15:25:25.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-05T15:32:26.000Z (28 days ago)
- Last Synced: 2025-01-05T16:29:42.436Z (27 days ago)
- Topics: gitlab, gitlab-group, iac, terraform, terraform-module
- Language: HCL
- Homepage: https://registry.terraform.io/modules/antmelekhin/group/gitlab
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# GitLab group module
This module manages GitLab groups.
## Requirements
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 0.13 |
| [gitlab](#requirement\_gitlab) | >= 17.5.0 |## Providers
| Name | Version |
|------|---------|
| [gitlab](#provider\_gitlab) | >= 17.5.0 |## Modules
No modules.
## Resources
| Name | Type |
|------|------|
| [gitlab_group.this](https://registry.terraform.io/providers/gitlabhq/gitlab/latest/docs/resources/group) | resource |## Inputs
| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| [name](#input\_name) | The name of the group. | `string` | n/a | yes |
| [description](#input\_description) | The group's description. | `string` | `null` | no |
| [parent\_id](#input\_parent\_id) | ID of the parent group (creates a nested group).
**Note**: On GitLab SaaS, you must use the GitLab UI to create groups without a parent group. | `number` | `null` | no |
| [path](#input\_path) | The path of the group. | `string` | `null` | no |
| [visibility\_level](#input\_visibility\_level) | The group's visibility. Can be `private`, `internal`, or `public`. | `string` | `"private"` | no |## Outputs
| Name | Description |
|------|-------------|
| [full\_name](#output\_full\_name) | The full name of the group. |
| [full\_path](#output\_full\_path) | The full path of the group. |
| [id](#output\_id) | The ID of this resource. |
| [web\_url](#output\_web\_url) | Web URL of the group. |