Manage the GitLab group Docker dependency proxy
mainThe gitlab_group_dependency_proxy resource allows you to manage the Docker dependency proxy at the group level.
Important Constraints:
- Only one dependency proxy can exist per group; attempting to manage more than one will cause conflicts.
- This resource is specifically for the group Docker dependency proxy. If you need to manage the project-level package dependency proxy, use the
gitlab_project_package_registry_proxyresource instead. - The
secretfield cannot be retrieved via import and must be provided in your Terraform configuration even after an import.
resource "gitlab_group_dependency_proxy" "foo" {
group = "1234"
enabled = true
identity = "newidentity"
secret = "somesecret"
}