Files
terraform-course/demo-5/vars.tf
T
Edward Viaene 59859b4f9d demo-5
2016-10-11 12:39:29 +00:00

12 lines
196 B
Terraform

variable "AWS_REGION" {
default = "eu-west-1"
}
variable "AMIS" {
type = "map"
default = {
us-east-1 = "ami-13be557e"
us-west-2 = "ami-06b94666"
eu-west-1 = "ami-844e0bf7"
}
}