Skip to content

Commit

Permalink
fix(deps)!: Update TF modules
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Sep 11, 2023
1 parent 7eb3252 commit df5c271
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/tf_cloudbuild_workspace_simple/files/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

module "test-vpc-module" {
source = "terraform-google-modules/network/google"
version = "~> 6.0"
version = "~> 7.0"
project_id = var.project_id
network_name = "my-custom-mode-network"
mtu = 1460
Expand Down
2 changes: 1 addition & 1 deletion modules/tf_cloudbuild_builder/cb.tf
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ resource "google_project_iam_member" "logs_writer" {
# https://cloud.google.com/build/docs/securing-builds/store-manage-build-logs#store-custom-bucket
module "bucket" {
source = "terraform-google-modules/cloud-storage/google//modules/simple_bucket"
version = "~> 3.2"
version = "~> 4.0"

name = local.log_bucket_name
project_id = var.project_id
Expand Down
2 changes: 1 addition & 1 deletion modules/tf_cloudbuild_source/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ module "cloudbuild_project" {
// Creating the bucket beforehand make it is possible to define a custom location.
module "cloudbuild_bucket" {
source = "terraform-google-modules/cloud-storage/google//modules/simple_bucket"
version = "~> 3.2"
version = "~> 4.0"

name = "${module.cloudbuild_project.project_id}_cloudbuild"
project_id = module.cloudbuild_project.project_id
Expand Down
6 changes: 3 additions & 3 deletions modules/tf_cloudbuild_workspace/buckets.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ locals {

module "artifacts_bucket" {
source = "terraform-google-modules/cloud-storage/google//modules/simple_bucket"
version = "~> 3.2"
version = "~> 4.0"

name = var.artifacts_bucket_name != "" ? var.artifacts_bucket_name : "${local.default_prefix}-build-artifacts-${var.project_id}"
project_id = var.project_id
Expand All @@ -45,7 +45,7 @@ resource "google_storage_bucket_iam_member" "artifacts_admin" {

module "log_bucket" {
source = "terraform-google-modules/cloud-storage/google//modules/simple_bucket"
version = "~> 3.2"
version = "~> 4.0"

name = var.log_bucket_name != "" ? var.log_bucket_name : "${local.default_prefix}-build-logs-${var.project_id}"
project_id = var.project_id
Expand All @@ -62,7 +62,7 @@ resource "google_storage_bucket_iam_member" "log_admin" {
# Custom bucket for storing TF state
module "state_bucket" {
source = "terraform-google-modules/cloud-storage/google//modules/simple_bucket"
version = "~> 3.2"
version = "~> 4.0"
count = var.create_state_bucket ? 1 : 0

name = var.create_state_bucket_name != "" ? var.create_state_bucket_name : "${local.default_prefix}-build-state-${var.project_id}"
Expand Down

0 comments on commit df5c271

Please sign in to comment.