Skip to content

Commit

Permalink
Merge pull request #154 from platform-engineering-org/renovate/all
Browse files Browse the repository at this point in the history
chore(deps): update all dependencies
  • Loading branch information
lmilbaum authored Aug 12, 2024
2 parents 6773be3 + 3f954b7 commit 88b70f2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ data "aws_security_group" "default" {

module "vpc" {
source = "terraform-aws-modules/vpc/aws"
version = "5.9.0"
version = "5.12.1"

name = "vpc-${var.environment}"
cidr = "10.0.0.0/16"
Expand All @@ -33,7 +33,7 @@ module "vpc" {

module "vpc_endpoints" {
source = "terraform-aws-modules/vpc/aws//modules/vpc-endpoints"
version = "5.9.0"
version = "5.12.1"

vpc_id = var.vpc_id == null ? module.vpc.vpc_id : var.vpc_id

Expand All @@ -57,7 +57,7 @@ resource "random_id" "unique_prefix" {

module "runner-instance" {
source = "cattle-ops/gitlab-runner/aws"
version = "7.10.0"
version = "7.12.1"

environment = var.environment
iam_object_prefix = random_id.unique_prefix.hex
Expand Down
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "5.60.0"
version = "5.62.0"
}
gitlab = {
source = "gitlabhq/gitlab"
Expand Down

0 comments on commit 88b70f2

Please sign in to comment.