diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 1626d6f..a8c3d74 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -3,7 +3,7 @@ "image": "mcr.microsoft.com/vscode/devcontainers/base:ubuntu-22.04", "features": { "ghcr.io/devcontainers/features/terraform:1.3.7": { - "version": "1.8.5" // renovate: packageName=hashicorp/terraform + "version": "1.9.1" // renovate: packageName=hashicorp/terraform } } } diff --git a/main.tf b/main.tf index 627091b..2172202 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.8.1" + version = "5.9.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.8.1" + version = "5.9.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.7.0" + version = "7.8.0" environment = var.environment iam_object_prefix = random_id.unique_prefix.hex diff --git a/variables.tf b/variables.tf index 07fad04..6d03ed9 100644 --- a/variables.tf +++ b/variables.tf @@ -125,7 +125,7 @@ variable "runner_worker_docker_machine_instance_root_size" { variable "runner_version" { description = "Gitlab runner version" type = string - default = "17.0.0" // renovate: packageName=gitlab-org/gitlab-runner + default = "17.1.0" // renovate: packageName=gitlab-org/gitlab-runner } variable "gitlab_group_id" { diff --git a/versions.tf b/versions.tf index 3910731..d310ee6 100644 --- a/versions.tf +++ b/versions.tf @@ -2,7 +2,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "5.55.0" + version = "5.57.0" } gitlab = { source = "gitlabhq/gitlab"