From f81223c71903824b571d7b1ae2a84d0ccf49648e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Sep 2024 20:52:14 +0000 Subject: [PATCH] Bump chainguard-dev/common/infra in /iac in the all group Bumps the all group in /iac with 1 update: [chainguard-dev/common/infra](https://github.com/chainguard-dev/terraform-infra-common). Updates `chainguard-dev/common/infra` from 0.6.74 to 0.6.75 - [Release notes](https://github.com/chainguard-dev/terraform-infra-common/releases) - [Commits](https://github.com/chainguard-dev/terraform-infra-common/compare/v0.6.74...v0.6.75) --- updated-dependencies: - dependency-name: chainguard-dev/common/infra dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all ... Signed-off-by: dependabot[bot] --- iac/broker.tf | 4 ++-- iac/gclb.tf | 2 +- iac/main.tf | 2 +- iac/prober.tf | 6 +++--- modules/app/main.tf | 4 ++-- modules/app/webhook.tf | 4 ++-- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/iac/broker.tf b/iac/broker.tf index 8b08903..d3dc7d0 100644 --- a/iac/broker.tf +++ b/iac/broker.tf @@ -1,7 +1,7 @@ // Create the Broker abstraction. module "cloudevent-broker" { source = "chainguard-dev/common/infra//modules/cloudevent-broker" - version = "0.6.74" + version = "0.6.75" name = "octo-sts-broker" project_id = var.project_id @@ -14,7 +14,7 @@ data "google_client_openid_userinfo" "me" {} module "cloudevent-recorder" { source = "chainguard-dev/common/infra//modules/cloudevent-recorder" - version = "0.6.74" + version = "0.6.75" name = "octo-sts-recorder" project_id = var.project_id diff --git a/iac/gclb.tf b/iac/gclb.tf index dae4f46..eb7dead 100644 --- a/iac/gclb.tf +++ b/iac/gclb.tf @@ -23,7 +23,7 @@ resource "google_dns_managed_zone" "top-level-zone" { // Put the above domain in front of our regional services. module "serverless-gclb" { source = "chainguard-dev/common/infra//modules/serverless-gclb" - version = "0.6.74" + version = "0.6.75" name = var.name project_id = var.project_id diff --git a/iac/main.tf b/iac/main.tf index 767d2db..41b6c0d 100644 --- a/iac/main.tf +++ b/iac/main.tf @@ -5,7 +5,7 @@ provider "ko" { repo = "gcr.io/${var.project_id}" } // Create a network with several regional subnets module "networking" { source = "chainguard-dev/common/infra//modules/networking" - version = "0.6.74" + version = "0.6.75" name = var.name project_id = var.project_id diff --git a/iac/prober.tf b/iac/prober.tf index f33eb1a..540460f 100644 --- a/iac/prober.tf +++ b/iac/prober.tf @@ -5,7 +5,7 @@ resource "google_service_account" "prober" { module "prober" { source = "chainguard-dev/common/infra//modules/prober" - version = "0.6.74" + version = "0.6.75" name = "octo-sts-prober" project_id = var.project_id @@ -32,7 +32,7 @@ resource "google_service_account" "negative_prober" { module "negative_prober" { source = "chainguard-dev/common/infra//modules/prober" - version = "0.6.74" + version = "0.6.75" name = "octo-sts-negative-prober" project_id = var.project_id @@ -54,7 +54,7 @@ module "negative_prober" { module "dashboard" { source = "chainguard-dev/common/infra//modules/dashboard/service" - version = "0.6.74" + version = "0.6.75" service_name = var.name project_id = var.project_id diff --git a/modules/app/main.tf b/modules/app/main.tf index 577852e..042cc1d 100644 --- a/modules/app/main.tf +++ b/modules/app/main.tf @@ -60,7 +60,7 @@ module "sts-emits-events" { for_each = var.regions source = "chainguard-dev/common/infra//modules/authorize-private-service" - version = "0.6.74" + version = "0.6.75" project_id = var.project_id region = each.key @@ -71,7 +71,7 @@ module "sts-emits-events" { module "this" { source = "chainguard-dev/common/infra//modules/regional-service" - version = "0.6.74" + version = "0.6.75" project_id = var.project_id name = var.name diff --git a/modules/app/webhook.tf b/modules/app/webhook.tf index c23c0b0..5e5b54a 100644 --- a/modules/app/webhook.tf +++ b/modules/app/webhook.tf @@ -7,7 +7,7 @@ resource "random_password" "webhook-secret" { module "webhook-secret" { source = "chainguard-dev/common/infra//modules/configmap" - version = "0.6.74" + version = "0.6.75" project_id = var.project_id name = "${var.name}-webhook-secret" @@ -20,7 +20,7 @@ module "webhook-secret" { module "webhook" { source = "chainguard-dev/common/infra//modules/regional-service" - version = "0.6.74" + version = "0.6.75" project_id = var.project_id name = "${var.name}-webhook"