This commit is contained in:
2023-12-19 20:51:06 -06:00
parent f3ffff7d94
commit 43371eaf10

View File

@@ -30,6 +30,12 @@ resource "gitlab_branch_protection" "release" {
allow_force_push = false allow_force_push = false
} }
resource "gitlab_project_runner_enablement" "k3s" {
project = gitlab_project.project.id
runner_id = var.GITLAB_SHARED_RUNNER_ID
}
resource "gitlab_project_variable" "OCTOAPI" { resource "gitlab_project_variable" "OCTOAPI" {
count = var.Enable_OCTOAPI ? 1 : 0 count = var.Enable_OCTOAPI ? 1 : 0
project = gitlab_project.project.id project = gitlab_project.project.id