Commit 58000282 authored by Syed Bilal Raees's avatar Syed Bilal Raees

Delete main.tf

parent 2b9c8f52
Pipeline #1964 failed with stages
in 9 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