Skip to content

Commit

Permalink
Merge branch 'master' into net-lb-proxy-int
Browse files Browse the repository at this point in the history
  • Loading branch information
apichick committed Jul 31, 2023
2 parents d06b8cf + 4f5d953 commit 2cc94bb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions blueprints/data-solutions/vertex-mlops/main.tf
Expand Up @@ -116,8 +116,7 @@ module "gcs-bucket" {
module "gcs-bucket-cloudbuild" {
source = "../../../modules/gcs"
project_id = module.project.project_id
name = "${var.prefix}_cloudbuild"
prefix = var.prefix
name = "${module.project.project_id}_cloudbuild"
location = var.region
storage_class = "REGIONAL"
versioning = false
Expand All @@ -137,10 +136,10 @@ module "vpc-local" {
count = local.use_shared_vpc ? 0 : 1
source = "../../../modules/net-vpc"
project_id = module.project.project_id
name = "default"
name = "vertex"
subnets = [
{
"name" : "default",
"name" : "subnet-${var.region}",
"region" : "${var.region}",
"ip_cidr_range" : "10.4.0.0/24",
"secondary_ip_range" : null
Expand Down
2 changes: 1 addition & 1 deletion modules/cloud-function-v2/main.tf
Expand Up @@ -155,7 +155,7 @@ resource "google_cloudfunctions2_function" "function" {
}

resource "google_cloudfunctions2_function_iam_binding" "default" {
for_each = var.iam
for_each = local.iam
project = var.project_id
location = google_cloudfunctions2_function.function.location
cloud_function = google_cloudfunctions2_function.function.name
Expand Down

0 comments on commit 2cc94bb

Please sign in to comment.