This commit is contained in:
Edward Viaene
2016-10-25 08:54:33 +00:00
parent 54959960e4
commit cc982905f0
4 changed files with 70 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
#variable "AWS_ACCESS_KEY" {}
#variable "AWS_SECRET_KEY" {}
variable "AWS_REGION" {
default = "eu-west-1"
}
variable "WIN_AMIS" {
type = "map"
default = {
us-east-1 = ""
us-west-2 = ""
eu-west-1 = "ami-7ac78809"
}
}
variable "PATH_TO_PRIVATE_KEY" {
default = "mykey"
}
variable "PATH_TO_PUBLIC_KEY" {
default = "mykey.pub"
}
variable "INSTANCE_USERNAME" {
default = "Terraform"
}
variable "INSTANCE_PASSWORD" { }