Commit 45e94159 authored by Syed Bilal Raees's avatar Syed Bilal Raees

changes commit

parent f8984e30
Pipeline #1954 failed with stages
in 7 seconds
terraform {
backend "http" {
}
required_providers {
gitlab = {
source = "gitlabhq/gitlab"
version = "3.13.0"
}
}
}
variable "gitlab_access_token" {
type = string
}
provider "gitlab" {
token = var.gitlab_access_token
}
data "gitlab_project" "terraform-cicd" {
id = 3407
}
resource "gitlab_project_variable" "sample_project" {
project = data.gitlab_project.terraform-cicd.id
key = "example_variable"
value = "Greetings Bilal!"
protected = false
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment