Skip to content
Snippets Groups Projects
Commit 853697d2 authored by Viktor Nagy's avatar Viktor Nagy
Browse files

Added gitlab_token variable

parent 5c5ee208
No related branches found
No related tags found
No related merge requests found
provider "gitlab" {
token = var.gitlab_token
}
data "gitlab_group" "iac-group" {
full_path = var.gitlab_group
}
......
......@@ -3,6 +3,11 @@ variable "gcp_project" {
description = "The name of the Google Cloud Project where the cluster is to be provisioned"
}
variable "gitlab_token" {
type = string
description = "Provide a GitLab access token with admin rights to the GitLab group set as the `gitlab_group` variable"
}
variable "gitlab_group" {
type = string
description = "Override the full_path to point to your GitLab desired group name"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment