terraform-provider-gitlab
terraform-provider-gitlab copied to clipboard
Terraform GitLab Provider
### Community Note * Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request * Please do...
### Feature Description Currently it is possible to use data objects to look up all projects in a group and manage some settings / attributes such as MR approval rules....
### GitLab Provider version 3.16.1 ### GitLab version 15.3.0 SaaS ### Terraform version Terraform v0.14.6 ### Relevant Terraform Configuration ```hcl resource "gitlab_branch" "production" { for_each = gitlab_project.this project = each.value.id...
### Feature Description `gitlab_tag_protection` allows only `no one`, `developer` or `maintainer` as `create_access_level`. But via GitLab we can set custom groups and users there. `gitlab_branch_protection` already supports the same: https://github.com/gitlabhq/terraform-provider-gitlab/pull/556...
### GitLab Provider version 3.15.1 ### GitLab version gitlab.com ### Terraform version 1.2.1 ### Relevant Terraform Configuration ```hcl resource "gitlab_project_protected_environment" "staging" { project = gitlab_project.this.id environment = "staging" deploy_access_levels {...
### GitLab Provider version 3.1.3 - via https://github.com/pulumi/pulumi-gitlab/tree/v4.7.1 ### GitLab version saas ### Terraform version N/A ### Relevant Terraform Configuration ```hcl resource "gitlab_group_membership" "main_group" { group_id = "123" user_id =...
This change will support the two options when removing a user from a group using `gitlab_group_membership`. These are `skip_subresources_on_destroy` and `unassign_issuables_on_destroy`. Both default to `false` and the change is backwards...
Hello! I have been controlling GitLab Project definitions without issue. We are using provider version 3.16.1. Our administrators updated to [15.0.4-ee](https://gitlab.com/gitlab-org/gitlab/-/tags/v15.0.4-ee) and the provider started to complain about a deprecated...
Refs: #1132
### GitLab Provider version 3.16.1 ### GitLab version GitLab Enterprise Edition 15.3.0-pre ### Terraform version 3.16.1 ### Relevant Terraform Configuration ```hcl resource "gitlab_project" "aviator_proj" { name = var.aviator_full_name namespace_id =...