- /TERRAFORM.GITLAB.PROJECTS/main.tf - /TERRAFORM.GITLAB.PROJECTS/variables.tf - /.gitlab/.gitlab-ci.yml - /.variables.yml
13 lines
215 B
HCL
13 lines
215 B
HCL
terraform {
|
|
backend "http" {}
|
|
required_providers {
|
|
gitlab {
|
|
source = "gitlabhq/gitlab"
|
|
verison = "16.2.0"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "gitlab" {
|
|
token = var.GITLAB_TOKEN
|
|
} |