Skip to content

Commit 1652c68

Browse files
Merge pull request #161 from chenrui333/update-version
Update version
2 parents d580369 + fa0eace commit 1652c68

File tree

4 files changed

+12
-11
lines changed

4 files changed

+12
-11
lines changed

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4.2
1+
2.4.4

.travis.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,13 @@ services:
66
- docker
77

88
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
1016

1117
before_install:
1218
- echo "before_install"
@@ -17,13 +23,8 @@ install:
1723
- bundle install
1824

1925
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
2728
- unzip terraform.zip ; rm -f terraform.zip; chmod +x terraform
2829
- mkdir -p ${HOME}/bin ; export PATH=${PATH}:${HOME}/bin; mv terraform ${HOME}/bin/
2930
- terraform -v

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# frozen_string_literal: true
22

3-
ruby '2.4.2'
3+
ruby '2.4.4'
44

55
source 'https://rubygems.org/' do
66
gem 'awspec', '~> 1.4.2'

examples/eks_test_fixture/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
terraform {
2-
required_version = "= 0.11.8"
2+
required_version = ">= 0.11.8"
33
}
44

55
provider "aws" {

0 commit comments

Comments
 (0)