mirror of
https://github.com/farcasclaudiu/terraform-course.git
synced 2026-06-22 07:01:56 +03:00
31 lines
531 B
Terraform
31 lines
531 B
Terraform
variable "AWS_REGION" {
|
|
default = "eu-west-1"
|
|
}
|
|
variable "PATH_TO_PRIVATE_KEY" {
|
|
default = "mykey"
|
|
}
|
|
variable "PATH_TO_PUBLIC_KEY" {
|
|
default = "mykey.pub"
|
|
}
|
|
variable "AMIS" {
|
|
type = "map"
|
|
default = {
|
|
us-east-1 = "ami-13be557e"
|
|
us-west-2 = "ami-06b94666"
|
|
eu-west-1 = "ami-844e0bf7"
|
|
}
|
|
}
|
|
variable "INSTANCE_DEVICE_NAME" {
|
|
default = "/dev/xvdh"
|
|
}
|
|
variable "JENKINS_VERSION" {
|
|
default = "2.19.1"
|
|
}
|
|
|
|
variable "APP_INSTANCE_AMI" {
|
|
default = "ami-2291de51"
|
|
}
|
|
variable "APP_INSTANCE_COUNT" {
|
|
default = "0"
|
|
}
|