From c946c54e99482edc8e8e6424dbc995da673e5653 Mon Sep 17 00:00:00 2001 From: "renovate-cds[bot]" <117288780+renovate-cds[bot]@users.noreply.github.com> Date: Sun, 21 Jul 2024 18:38:57 -0400 Subject: [PATCH] chore(deps): update all patch dependencies (#1841) * chore(deps): update all patch dependencies * chore: bump tf version --------- Co-authored-by: Renovate Bot Co-authored-by: Pat Heard --- .../workflows/deploy-production-container.yml | 2 +- .../workflows/deploy-staging-container.yml | 2 +- .../workflows/terragrunt-apply-production.yml | 2 +- .../workflows/terragrunt-apply-staging.yml | 2 +- .../workflows/terragrunt-plan-production.yml | 2 +- .github/workflows/terragrunt-plan-staging.yml | 2 +- infrastructure/.devcontainer/Dockerfile | 34 ------------------- .../.devcontainer/devcontainer.json | 2 +- .../terragrunt/env/common/provider.tf | 2 +- wordpress/docker/apache/Dockerfile | 2 +- 10 files changed, 9 insertions(+), 43 deletions(-) delete mode 100644 infrastructure/.devcontainer/Dockerfile diff --git a/.github/workflows/deploy-production-container.yml b/.github/workflows/deploy-production-container.yml index 0134b3bd4..57bee79d0 100644 --- a/.github/workflows/deploy-production-container.yml +++ b/.github/workflows/deploy-production-container.yml @@ -15,7 +15,7 @@ on: env: AWS_REGION: ca-central-1 CONFTEST_VERSION: 0.27.0 - TERRAFORM_VERSION: 1.9.1 + TERRAFORM_VERSION: 1.9.2 TERRAGRUNT_VERSION: 0.57.5 TF_INPUT: false TF_VAR_database_name: ${{ secrets.PRODUCTION_DATABASE_NAME }} diff --git a/.github/workflows/deploy-staging-container.yml b/.github/workflows/deploy-staging-container.yml index 9240054e8..75ddfa048 100644 --- a/.github/workflows/deploy-staging-container.yml +++ b/.github/workflows/deploy-staging-container.yml @@ -14,7 +14,7 @@ on: env: AWS_REGION: ca-central-1 - TERRAFORM_VERSION: 1.9.1 + TERRAFORM_VERSION: 1.9.2 TERRAGRUNT_VERSION: 0.57.5 TF_INPUT: false TF_VAR_database_name: ${{ secrets.STAGING_DATABASE_NAME }} diff --git a/.github/workflows/terragrunt-apply-production.yml b/.github/workflows/terragrunt-apply-production.yml index b61c8f029..e7e49ad0d 100644 --- a/.github/workflows/terragrunt-apply-production.yml +++ b/.github/workflows/terragrunt-apply-production.yml @@ -10,7 +10,7 @@ on: env: AWS_REGION: ca-central-1 CONFTEST_VERSION: 0.27.0 - TERRAFORM_VERSION: 1.9.1 + TERRAFORM_VERSION: 1.9.2 TERRAGRUNT_VERSION: 0.57.5 TF_INPUT: false TF_VAR_client_vpn_access_group_id: ${{ secrets.PRODUCTION_CLIENT_VPN_ACCESS_GROUP_ID }} diff --git a/.github/workflows/terragrunt-apply-staging.yml b/.github/workflows/terragrunt-apply-staging.yml index 55cdbe42e..f81dc4ba7 100644 --- a/.github/workflows/terragrunt-apply-staging.yml +++ b/.github/workflows/terragrunt-apply-staging.yml @@ -13,7 +13,7 @@ on: env: AWS_REGION: ca-central-1 - TERRAFORM_VERSION: 1.9.1 + TERRAFORM_VERSION: 1.9.2 TERRAGRUNT_VERSION: 0.57.5 TF_INPUT: false TF_VAR_client_vpn_access_group_id: ${{ secrets.STAGING_CLIENT_VPN_ACCESS_GROUP_ID }} diff --git a/.github/workflows/terragrunt-plan-production.yml b/.github/workflows/terragrunt-plan-production.yml index 598aae60a..c833c8d99 100644 --- a/.github/workflows/terragrunt-plan-production.yml +++ b/.github/workflows/terragrunt-plan-production.yml @@ -10,7 +10,7 @@ on: env: AWS_REGION: ca-central-1 CONFTEST_VERSION: 0.27.0 - TERRAFORM_VERSION: 1.9.1 + TERRAFORM_VERSION: 1.9.2 TERRAGRUNT_VERSION: 0.57.5 TF_INPUT: false TF_VAR_client_vpn_access_group_id: ${{ secrets.PRODUCTION_CLIENT_VPN_ACCESS_GROUP_ID }} diff --git a/.github/workflows/terragrunt-plan-staging.yml b/.github/workflows/terragrunt-plan-staging.yml index 558c1f1b4..a18e1f4df 100644 --- a/.github/workflows/terragrunt-plan-staging.yml +++ b/.github/workflows/terragrunt-plan-staging.yml @@ -11,7 +11,7 @@ on: env: AWS_REGION: ca-central-1 - TERRAFORM_VERSION: 1.9.1 + TERRAFORM_VERSION: 1.9.2 TERRAGRUNT_VERSION: 0.57.5 TF_INPUT: false TF_VAR_client_vpn_access_group_id: ${{ secrets.STAGING_CLIENT_VPN_ACCESS_GROUP_ID }} diff --git a/infrastructure/.devcontainer/Dockerfile b/infrastructure/.devcontainer/Dockerfile deleted file mode 100644 index ee12c9bfa..000000000 --- a/infrastructure/.devcontainer/Dockerfile +++ /dev/null @@ -1,34 +0,0 @@ -FROM mcr.microsoft.com/vscode/devcontainers/base:buster@sha256:9d0efa8b32ab5a40252ed9aa3f1e8d5d989c979b627fcc9fb9e6f11db73c3a0a - -ARG USERNAME=vscode - -# Set these in devcontainer.json -ARG TERRAFORM_VERSION -ARG TERRAFORM_CHECKSUM -ARG TERRAGRUNT_VERSION -ARG TERRAGRUNT_CHECKSUM - -# Install packages -RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ - && apt-get -y install --no-install-recommends awscli build-essential ca-certificates curl git gnupg2 jq libffi-dev make openssh-client python3-dev python3-pip vim zsh \ - && apt-get autoremove -y && apt-get clean -y - -# Install Terraform -RUN curl -Lo terraform.zip https://releases.hashicorp.com/terraform/"${TERRAFORM_VERSION}"/terraform_"${TERRAFORM_VERSION}"_linux_"$(dpkg --print-architecture)".zip \ - && unzip terraform.zip \ - && mv terraform /usr/local/bin/ \ - && rm terraform.zip - -# Install Terragrunt -RUN curl -Lo terragrunt https://github.com/gruntwork-io/terragrunt/releases/download/v"${TERRAGRUNT_VERSION}"/terragrunt_linux_"$(dpkg --print-architecture)" \ - && chmod +x terragrunt \ - && mv terragrunt /usr/local/bin/ - -# Setup aliases and autocomplete -RUN echo "\n\ -complete -C /usr/bin/aws_completer aws\n\ -complete -C /usr/local/bin/terraform terraform\n\ -complete -C /usr/local/bin/terraform terragrunt\n\ -alias tf='terraform'\n\ -alias tg='terragrunt'\n\ -alias ll='la -la'" >> /home/"${USERNAME}"/.zshrc \ No newline at end of file diff --git a/infrastructure/.devcontainer/devcontainer.json b/infrastructure/.devcontainer/devcontainer.json index 918faf40f..5cdbc9ff3 100644 --- a/infrastructure/.devcontainer/devcontainer.json +++ b/infrastructure/.devcontainer/devcontainer.json @@ -23,7 +23,7 @@ }, "features": { "terraform": { - "version": "1.9.1", + "version": "1.9.2", "tflint": "latest", "terragrunt": "0.57.5" } diff --git a/infrastructure/terragrunt/env/common/provider.tf b/infrastructure/terragrunt/env/common/provider.tf index 7b177b267..864bb83c8 100644 --- a/infrastructure/terragrunt/env/common/provider.tf +++ b/infrastructure/terragrunt/env/common/provider.tf @@ -1,6 +1,6 @@ terraform { - required_version = "1.9.1" + required_version = "1.9.2" required_providers { aws = { source = "hashicorp/aws" diff --git a/wordpress/docker/apache/Dockerfile b/wordpress/docker/apache/Dockerfile index cbca052e5..61b84495e 100644 --- a/wordpress/docker/apache/Dockerfile +++ b/wordpress/docker/apache/Dockerfile @@ -1,4 +1,4 @@ -FROM httpd:2.4.61-alpine@sha256:85063249242d9c7d305c4cc092011cd90b8fddad72c8481fb6786e36e20ec03f +FROM httpd:2.4.62-alpine@sha256:2164492d4700d1b79786425caffbfd84c4c7c7d625c47c13f9edc80abcb8b3f1 WORKDIR /usr/src/wordpress