From 76805c566ba11a5e10422bcf82c3e63b4e421fbd Mon Sep 17 00:00:00 2001 From: Carl Meijer Date: Sat, 27 Apr 2024 10:31:09 +0200 Subject: [PATCH] Fix another typo. --- .github/workflows/build-containers.yaml | 2 +- terraform/vars.tf | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-containers.yaml b/.github/workflows/build-containers.yaml index 2b1f1a9..0602bcb 100644 --- a/.github/workflows/build-containers.yaml +++ b/.github/workflows/build-containers.yaml @@ -24,7 +24,7 @@ jobs: context: containers/hello_server platforms: linux/amd64,linux/arm64 push: true - tags: hammingweight/hello-server:1.0.2 + tags: hammingweight/hello_server:1.0.2 - name: Build and push FIM sidecar uses: docker/build-push-action@v5 with: diff --git a/terraform/vars.tf b/terraform/vars.tf index 01784e3..45b0a33 100644 --- a/terraform/vars.tf +++ b/terraform/vars.tf @@ -7,13 +7,13 @@ variable "app_name" { variable "app_version" { description = "The version of the application." type = string - default = "1.0.1" + default = "1.0.2" } variable "fim_version" { description = "The version of the FIM sidecar image." type = string - default = "1.0.0" + default = "1.0.1" } variable "service_port" {