This commit is contained in:
Edward Viaene
2016-10-10 14:52:50 +00:00
parent 1b1b0ed203
commit a85c62ce7d
4 changed files with 39 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
variable "AWS_ACCESS_KEY" {}
variable "AWS_SECRET_KEY" {}
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"
}
}