jenkins-packer-demo

This commit is contained in:
Edward Viaene
2016-10-19 08:49:19 +00:00
parent fa907a3219
commit 21a1eaa88f
9 changed files with 236 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
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 = "jenkins_2.7.4_all.deb"
}