mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-01-17 17:22:13 +01:00
@@ -1 +1 @@
|
||||
2.4.2
|
||||
2.4.4
|
||||
|
||||
17
.travis.yml
17
.travis.yml
@@ -6,7 +6,13 @@ services:
|
||||
- docker
|
||||
|
||||
rvm:
|
||||
- 2.4.2
|
||||
- 2.4.4
|
||||
|
||||
env:
|
||||
global:
|
||||
- AWS_REGION='us-east-1'
|
||||
- TF_VAR_region=${AWS_REGION}
|
||||
- TF_WARN_OUTPUT_ERRORS=1
|
||||
|
||||
before_install:
|
||||
- echo "before_install"
|
||||
@@ -17,13 +23,8 @@ install:
|
||||
- bundle install
|
||||
|
||||
before_script:
|
||||
- echo 'before_script'
|
||||
- export AWS_REGION='us-east-1'
|
||||
- export TF_VAR_region=${AWS_REGION}
|
||||
- echo "using AWS_REGION=${AWS_REGION}"
|
||||
- export TF_WARN_OUTPUT_ERRORS=1
|
||||
- curl --silent --output terraform.zip https://releases.hashicorp.com/terraform/0.11.8/terraform_0.11.8_linux_amd64.zip
|
||||
- sha256sum terraform.zip | grep "84ccfb8e13b5fce63051294f787885b76a1fedef6bdbecf51c5e586c9e20c9b7"
|
||||
- export LATEST_TERRAFORM_VERSION=$(curl -s https://api.github.com/repos/hashicorp/terraform/releases/latest | grep tag_name | cut -d '"' -f 4 | cut -c2-)
|
||||
- curl --silent --output terraform.zip https://releases.hashicorp.com/terraform/${LATEST_TERRAFORM_VERSION}/terraform_${LATEST_TERRAFORM_VERSION}_linux_amd64.zip
|
||||
- unzip terraform.zip ; rm -f terraform.zip; chmod +x terraform
|
||||
- mkdir -p ${HOME}/bin ; export PATH=${PATH}:${HOME}/bin; mv terraform ${HOME}/bin/
|
||||
- terraform -v
|
||||
|
||||
2
Gemfile
2
Gemfile
@@ -1,6 +1,6 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
ruby '2.4.2'
|
||||
ruby '2.4.4'
|
||||
|
||||
source 'https://rubygems.org/' do
|
||||
gem 'awspec', '~> 1.4.2'
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
terraform {
|
||||
required_version = "= 0.11.8"
|
||||
required_version = ">= 0.11.8"
|
||||
}
|
||||
|
||||
provider "aws" {
|
||||
|
||||
Reference in New Issue
Block a user