File tree Expand file tree Collapse file tree 4 files changed +12
-11
lines changed
examples/eks_test_fixture Expand file tree Collapse file tree 4 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 1
- 2.4.2
1
+ 2.4.4
Original file line number Diff line number Diff line change @@ -6,7 +6,13 @@ services:
6
6
- docker
7
7
8
8
rvm :
9
- - 2.4.2
9
+ - 2.4.4
10
+
11
+ env :
12
+ global :
13
+ - AWS_REGION='us-east-1'
14
+ - TF_VAR_region=${AWS_REGION}
15
+ - TF_WARN_OUTPUT_ERRORS=1
10
16
11
17
before_install :
12
18
- echo "before_install"
@@ -17,13 +23,8 @@ install:
17
23
- bundle install
18
24
19
25
before_script :
20
- - echo 'before_script'
21
- - export AWS_REGION='us-east-1'
22
- - export TF_VAR_region=${AWS_REGION}
23
- - echo "using AWS_REGION=${AWS_REGION}"
24
- - export TF_WARN_OUTPUT_ERRORS=1
25
- - curl --silent --output terraform.zip https://releases.hashicorp.com/terraform/0.11.8/terraform_0.11.8_linux_amd64.zip
26
- - sha256sum terraform.zip | grep "84ccfb8e13b5fce63051294f787885b76a1fedef6bdbecf51c5e586c9e20c9b7"
26
+ - export LATEST_TERRAFORM_VERSION=$(curl -s https://api.github.com/repos/hashicorp/terraform/releases/latest | grep tag_name | cut -d '"' -f 4 | cut -c2-)
27
+ - curl --silent --output terraform.zip https://releases.hashicorp.com/terraform/${LATEST_TERRAFORM_VERSION}/terraform_${LATEST_TERRAFORM_VERSION}_linux_amd64.zip
27
28
- unzip terraform.zip ; rm -f terraform.zip; chmod +x terraform
28
29
- mkdir -p ${HOME}/bin ; export PATH=${PATH}:${HOME}/bin; mv terraform ${HOME}/bin/
29
30
- terraform -v
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
- ruby '2.4.2 '
3
+ ruby '2.4.4 '
4
4
5
5
source 'https://rubygems.org/' do
6
6
gem 'awspec' , '~> 1.4.2'
Original file line number Diff line number Diff line change 1
1
terraform {
2
- required_version = " = 0.11.8"
2
+ required_version = " > = 0.11.8"
3
3
}
4
4
5
5
provider "aws" {
You can’t perform that action at this time.
0 commit comments