Last active
February 23, 2023 09:51
-
-
Save alanplatt/8d85b7c6f3304cdcef05133842252b2d to your computer and use it in GitHub Desktop.
gitlab provider setup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
provider "gitlab" { | |
token = var.gitlab_token | |
base_url = var.gitlab_url | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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