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

Update variable.tfvars

parent 751cd937
Pipeline #26485 failed with stage
in 2 minutes and 32 seconds
......@@ -5,6 +5,27 @@ variable "instance_type" {
sensitive = true
}
variable "access_key" {
description = "AKIA3CBLDPGKFLYIQM4T"
type = string
default = "t2.micro"
sensitive = true
}
variable "secret_key" {
description = "H6ZxEVFZBVCO56mUFv4Oi1hzm2u934Z6yQxb9G15"
type = string
default = "t2.micro"
sensitive = true
}
variable "role_name" {
description = "Value of the Name tag for the IAM role"
type = string
......@@ -26,17 +47,4 @@ variable "security_group_name" {
}
#data "aws_iam_role" "role_name" {
# name = var.role_name
#}
#resource "aws_instance" "web" {
# ami = "ami-a0cfeed8"
#instance_type = "t2.micro"
#user_data = file("init-script.sh")
#+ vpc_security_group_ids = [aws_security_group.web-sg.id]
#tags = {
#Name = random_pet.name.id
# }
#}
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