Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8.3.0 - May 17, 2024 #290

Merged
merged 1 commit into from
May 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG TERRAFORM_VERSION=1.6.6
ARG AWS_CLI_VERSION=2.13.33
ARG TERRAFORM_VERSION=1.8.3
ARG AWS_CLI_VERSION=2.15.46
FROM hashicorp/terraform:$TERRAFORM_VERSION as terraform

FROM amazon/aws-cli:$AWS_CLI_VERSION
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ The following are also required:

#### Terraform Requirements:

- [Terraform](https://www.terraform.io/downloads.html) v1.6.6
- [Terraform](https://www.terraform.io/downloads.html) v1.8.3
- [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/) - v1.28.7
- [jq](https://stedolan.github.io/jq/) v1.6
- [AWS CLI](https://aws.amazon.com/cli) (optional; useful as an alternative to the AWS Web Console) v2.13.33
- [AWS CLI](https://aws.amazon.com/cli) (optional; useful as an alternative to the AWS Web Console) v2.15.46

#### Docker Requirements:

Expand Down
4 changes: 2 additions & 2 deletions container-structure-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ commandTests:
- name: "terraform version"
command: "terraform"
args: ["--version"]
expectedOutput: ["Terraform v1.6.6"]
expectedOutput: ["Terraform v1.8.3"]
- name: "aws-cli version"
command: "sh"
args:
- -c
- |
aws --version
expectedOutput: ["aws-cli/2.13.33"]
expectedOutput: ["aws-cli/2.15.46"]

metadataTest:
workdir: "/viya4-iac-aws"
Expand Down
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# SPDX-License-Identifier: Apache-2.0

terraform {
required_version = ">= 1.6.6"
required_version = ">= 1.8.0"
required_providers {
aws = {
source = "hashicorp/aws"
Expand Down
Loading