From f8a48844c283ca80adba37877963f725c4ff4432 Mon Sep 17 00:00:00 2001 From: Peter Dunham Date: Tue, 28 Aug 2018 17:38:34 -0400 Subject: [PATCH 1/2] AWS fixed version change and changes to AWS install commands --- scripts/install.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/scripts/install.sh b/scripts/install.sh index b349459..28dbf5a 100644 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -7,6 +7,8 @@ fi TERRAFORM_VERSION="0.11.7" PACKER_VERSION="1.2.4" +AWS_EB_CLI="3.12.0" + # create new ssh key [[ ! -f /home/ubuntu/.ssh/mykey ]] \ && mkdir -p /home/ubuntu/.ssh \ @@ -31,8 +33,8 @@ if [[ $? == 127 ]]; then python3 get-pip.py fi # install awscli and ebcli -pip install -U awscli -pip install -U awsebcli +pip install awsebcli==${AWS_EB_CLI} +pip install awscli --upgrade #terraform T_VERSION=$(/usr/local/bin/terraform -v | head -1 | cut -d ' ' -f 2 | tail -c +2) From af33880295f7ae3ec8cb8549291c2d072cc133e7 Mon Sep 17 00:00:00 2001 From: Peter Dunham Date: Tue, 28 Aug 2018 18:00:25 -0400 Subject: [PATCH 2/2] terraform version bump --- scripts/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install.sh b/scripts/install.sh index 28dbf5a..705060e 100644 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -5,7 +5,7 @@ if [ -e /etc/redhat-release ] ; then REDHAT_BASED=true fi -TERRAFORM_VERSION="0.11.7" +TERRAFORM_VERSION="0.11.8" PACKER_VERSION="1.2.4" AWS_EB_CLI="3.12.0"