docker-demo-2

This commit is contained in:
Edward Viaene
2016-10-26 09:44:13 +00:00
parent d32475746d
commit 8b0dc55125
7 changed files with 298 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
variable "AWS_REGION" {
default = "eu-west-1"
}
variable "PATH_TO_PRIVATE_KEY" {
default = "mykey"
}
variable "PATH_TO_PUBLIC_KEY" {
default = "mykey.pub"
}
variable "ECS_INSTANCE_TYPE" {
default = "t2.micro"
}
variable "ECS_AMIS" {
type = "map"
default = {
us-east-1 = "ami-1924770e"
us-west-2 = "ami-56ed4936"
eu-west-1 = "ami-c8337dbb"
}
}
# Full List: http://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-optimized_AMI.html