Commit 73697475 authored by rajat.kulkarni's avatar rajat.kulkarni

Update sampleec2.tf

parent 93cf3b5f
Pipeline #23182 failed with stages
in 1 second
......@@ -51,4 +51,28 @@ variable "policy_name" {
type = string
default = "ExampleAppServerInstance"
sensitive = true
}
terraform {
backend "http" {
}
required_providers {
gitlab = {
source = "gitlabhq/gitlab"
version = "~> 3.1"
}
}
}
variable "gitlab_access_token" {
type = string
}
provider "gitlab" {
token = var.gitlab_access_token
}
data "gitlab_project" "Terraform_and_EC2_instance"{
id =1809
}
\ No newline at end of file
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