terraform-provider-gitlab
terraform-provider-gitlab copied to clipboard
Terraform GitLab Provider
There is currently no support for managing the Redmine integration. See https://docs.gitlab.com/ee/api/services.html#redmine ### References Are there any other GitHub issues (open or closed) or Pull Requests that should be linked...
Allow for a default notification level to be set for a project to reduce email spam and allow for users to opt into projects they want to be notified about.
During one of the CE acceptance test runs I've got this failure: https://github.com/gitlabhq/terraform-provider-gitlab/runs/4993701443?check_suite_focus=true#step:6:93 > === RUN TestAccGitlabLabel_basic > resource_gitlab_label_test.go:17: Step 5/5 error: Error running apply: exit status 1 > >...
Hi there, I'd like to enable a deploy key to push on a protected branch. I can see how to create my deploy key with write access, how to enable...
GitLab exposes the API `///repository/archive.{zip,tar.gz}` (maybe other formats as well, I don't know at the moment) for downloading the repository's contents in an archive file. For anyone who needs that...
It would be very useful to be able to create a fork into a given namespace, a la: ``` resource "gitlab_project_fork" "foo" { project_id = 123 namespace_id = 456 ......
Currently the variables in gitlab_project_variable are sensitive by default and cannot be overridden. There are some variables that I'd like to view the output for when doing a plan. ```...
Hi, I want to automate GitLab Runner deployment but it needs Runner Registration Token. Unfortunately, there's no Data Source in GitLab provider to grab that info automatically - Please add...
### Terraform Version Terraform v1.0.5 on darwin_amd64 + provider registry.terraform.io/gitlabhq/gitlab v3.7.0 + provider registry.terraform.io/hashicorp/tls v3.1.0 ### Affected Resource(s) Please list the resources as a list, for example: -gitlab_deploy_key -gitlab_deploy_key_enable ###...
The current `gitlab_service_slack` resource is missing a few new-ish parameters, like the `deployment_channel` and `deployment_events`. The goal of this issue is to update this resource if all available parameters. Follow...