From 84b478a79bb8568bd550a576da4563b0453a67d7 Mon Sep 17 00:00:00 2001 From: Isaac Stefanek Date: Thu, 21 Apr 2016 15:32:30 -0700 Subject: [PATCH] terraform: added support for centos7 to aws --- terraform/aws/variables.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/terraform/aws/variables.tf b/terraform/aws/variables.tf index c1e3f760bf..f00e4b80fd 100644 --- a/terraform/aws/variables.tf +++ b/terraform/aws/variables.tf @@ -8,6 +8,7 @@ variable "user" { ubuntu = "ubuntu" rhel6 = "ec2-user" centos6 = "centos" + centos7 = "centos" rhel7 = "ec2-user" } } @@ -28,6 +29,8 @@ variable "ami" { us-west-2-centos6 = "ami-1255b321" us-east-1-rhel7 = "ami-2051294a" us-west-2-rhel7 = "ami-775e4f16" + us-east-1-centos7 = "ami-6d1c2007" + us-west-1-centos7 = "ami-af4333cf" } } @@ -36,6 +39,7 @@ variable "service_conf" { ubuntu = "debian_upstart.conf" rhel6 = "rhel_upstart.conf" centos6 = "rhel_upstart.conf" + centos7 = "rhel_consul.service" rhel7 = "rhel_consul.service" } } @@ -44,6 +48,7 @@ variable "service_conf_dest" { ubuntu = "upstart.conf" rhel6 = "upstart.conf" centos6 = "upstart.conf" + centos7 = "consul.service" rhel7 = "consul.service" } }