Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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. |