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

feat: (IAC-1472) AWS - Security scan 2024.06 #293

Merged
merged 3 commits into from
Jul 3, 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
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
ARG TERRAFORM_VERSION=1.8.3
ARG AWS_CLI_VERSION=2.15.46
ARG TERRAFORM_VERSION=1.8.5
ARG AWS_CLI_VERSION=2.16.5
FROM hashicorp/terraform:$TERRAFORM_VERSION as terraform

FROM amazon/aws-cli:$AWS_CLI_VERSION
ARG KUBECTL_VERSION=1.28.7
ARG KUBECTL_VERSION=1.28.11

WORKDIR /viya4-iac-aws

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.8.3"]
expectedOutput: ["Terraform v1.8.5"]
- name: "aws-cli version"
command: "sh"
args:
- -c
- |
aws --version
expectedOutput: ["aws-cli/2.15.46"]
expectedOutput: ["aws-cli/2.16.5"]

metadataTest:
workdir: "/viya4-iac-aws"
Expand Down
Loading