Skip to content

Instantly share code, notes, and snippets.

@alanplatt
Last active February 23, 2023 09:51
Show Gist options
  • Save alanplatt/8d85b7c6f3304cdcef05133842252b2d to your computer and use it in GitHub Desktop.
Save alanplatt/8d85b7c6f3304cdcef05133842252b2d to your computer and use it in GitHub Desktop.
gitlab provider setup
provider "gitlab" {
token = var.gitlab_token
base_url = var.gitlab_url
}
variable "gitlab_token" {
type = string
description = "The token used to access the gitlab API"
}
variable "gitlab_url" {
type = string
description = "The url to used to access gitlab"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment