Skip to content

Commit

Permalink
Create var.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
srinivas1987devops authored Dec 25, 2021
1 parent e24123d commit fac8f8c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions var.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
variable "region" {
type = string
}
variable "profile" {
type = string
}
variable "ami" {
type = map
default = {
ap-northeast-1 = "ami-0218d08a1f9dac831"
us-east-2 = "ami-002068ed284fb165b"
}
}
variable "instancetype" {
type = map
default = {
ap-northeast-1 = "t2.micro"
us-east-2 = "t3.micro"
}
}

0 comments on commit fac8f8c

Please sign in to comment.