From 77b99bc8ed4fc0d66b5ca8ebd374811f7e096b75 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Tue, 22 Oct 2024 20:10:37 +0000 Subject: [PATCH] chore(deps): update all dependencies Signed-off-by: Platform Engineering Bot --- .pre-commit-config.yaml | 2 +- main.tf | 6 +++--- variables.tf | 2 +- versions.tf | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 73c5d24..98de119 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -4,7 +4,7 @@ default_language_version: repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.6.0 + rev: v5.0.0 hooks: - id: end-of-file-fixer - id: trailing-whitespace diff --git a/main.tf b/main.tf index 2778722..5afff2d 100644 --- a/main.tf +++ b/main.tf @@ -9,7 +9,7 @@ data "aws_security_group" "default" { module "vpc" { source = "terraform-aws-modules/vpc/aws" - version = "5.13.0" + version = "5.14.0" name = "vpc-${var.environment}" cidr = "10.0.0.0/16" @@ -33,7 +33,7 @@ module "vpc" { module "vpc_endpoints" { source = "terraform-aws-modules/vpc/aws//modules/vpc-endpoints" - version = "5.13.0" + version = "5.14.0" vpc_id = var.vpc_id == null ? module.vpc.vpc_id : var.vpc_id @@ -57,7 +57,7 @@ resource "random_id" "unique_prefix" { module "runner-instance" { source = "cattle-ops/gitlab-runner/aws" - version = "7.14.0" + version = "7.15.0" environment = var.environment iam_object_prefix = random_id.unique_prefix.hex diff --git a/variables.tf b/variables.tf index 61ca99e..03e9b11 100644 --- a/variables.tf +++ b/variables.tf @@ -131,7 +131,7 @@ variable "runner_worker_docker_machine_instance_root_size" { variable "runner_version" { description = "Gitlab runner version" type = string - default = "17.4.0" // renovate: packageName=gitlab-org/gitlab-runner + default = "17.5.2" // renovate: packageName=gitlab-org/gitlab-runner } variable "gitlab_group_id" { diff --git a/versions.tf b/versions.tf index 67103e5..2302be9 100644 --- a/versions.tf +++ b/versions.tf @@ -2,11 +2,11 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "5.70.0" + version = "5.72.1" } gitlab = { source = "gitlabhq/gitlab" - version = "17.4.0" + version = "17.5.0" } local = { source = "hashicorp/local"