Skip to content

Commit

Permalink
#73 - update to terraform 0.12.3 and upgrade aws tf provider in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
npalm committed Jul 9, 2019
1 parent ac55277 commit 27cff86
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions ci/bin/run-local.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash

docker run --entrypoint="/bin/sh" -it --rm -w /build -v $(pwd):/build hashicorp/terraform:0.12.2 ./ci/bin/verify.sh
docker run --entrypoint="/bin/sh" -it --rm -w /build -v $(pwd):/build hashicorp/terraform:0.12.2 ./ci/bin/verify-examples.sh
docker run --entrypoint="/bin/sh" -it --rm -w /build -v $(pwd):/build hashicorp/terraform:0.12.3 ./ci/bin/verify.sh
docker run --entrypoint="/bin/sh" -it --rm -w /build -v $(pwd):/build hashicorp/terraform:0.12.3 ./ci/bin/verify-examples.sh
2 changes: 1 addition & 1 deletion ci/bin/terraform.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
TARGET_DIR=/opt
PATH=${PATH}:${TARGET_DIR}

TERRAFORM_VERSION=${1:-"0.12.2"}
TERRAFORM_VERSION=${1:-"0.12.3"}
OS=${2:-"linux"}
TERRAFORM_URL="https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_${OS}_amd64.zip"

Expand Down
2 changes: 1 addition & 1 deletion examples/runner-docker/.terraform-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12.2
0.12.3
2 changes: 1 addition & 1 deletion examples/runner-docker/providers.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
provider "aws" {
region = var.aws_region
version = "2.13"
version = "2.18"
}

provider "template" {
Expand Down
2 changes: 1 addition & 1 deletion examples/runner-pre-registered/.terraform-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12.2
0.12.3
2 changes: 1 addition & 1 deletion examples/runner-pre-registered/providers.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
provider "aws" {
region = var.aws_region
version = "2.13"
version = "2.18"
}

provider "template" {
Expand Down
2 changes: 1 addition & 1 deletion examples/runner-public/.terraform-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12.2
0.12.3
2 changes: 1 addition & 1 deletion examples/runner-public/providers.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
provider "aws" {
region = var.aws_region
version = "2.13"
version = "2.18"
}

provider "template" {
Expand Down

0 comments on commit 27cff86

Please sign in to comment.