Skip to content

Commit

Permalink
Run tests against latest terraform / aws provider (#321)
Browse files Browse the repository at this point in the history
  • Loading branch information
errm authored Jun 30, 2022
1 parent 8616eb4 commit 7d78096
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/actions/terratest/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM golang:1.17.3-alpine3.13

WORKDIR /

ARG TERRAFORM_VERSION=1.0.11
ARG TERRAFORM_VERSION=1.2.3
ARG KUBECTL_VERSION=1.22.11


Expand Down
2 changes: 1 addition & 1 deletion .terraform-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.11
1.2.3
2 changes: 1 addition & 1 deletion examples/cluster/bottlerocket_gpu_node_group/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 3.49.0, < 5.0.0"
version = "4.20.1"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/cluster/bottlerocket_node_group/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 3.49.0, < 5.0.0"
version = "4.20.1"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/cluster/environment/.terraform-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12.31
1.2.3
7 changes: 3 additions & 4 deletions examples/cluster/environment/backend.tf
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
terraform {
backend "s3" {
bucket = "cookpad-terraform-aws-eks-testing"
key = "test-environment"
region = "us-east-1"
dynamodb_table = "terraform_locks"
bucket = "cookpad-terraform-aws-eks-testing"
key = "test-environment"
region = "us-east-1"
}
}
2 changes: 1 addition & 1 deletion examples/cluster/environment/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 3.49.0, < 5.0.0"
version = "4.20.1"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/cluster/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 3.49.0, < 5.0.0"
version = "4.20.1"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/cluster/standard_node_group/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 3.49.0, < 5.0.0"
version = "4.20.1"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/vpc/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 3.49.0, < 5.0.0"
version = "4.20.1"
}
}
}
Expand Down

0 comments on commit 7d78096

Please sign in to comment.