diff --git a/blueprints/data-solutions/bq-ml/README.md b/blueprints/data-solutions/bq-ml/README.md index 79a73832..2ea84190 100644 --- a/blueprints/data-solutions/bq-ml/README.md +++ b/blueprints/data-solutions/bq-ml/README.md @@ -67,9 +67,9 @@ To run the demo: | [dataset](outputs.tf#L22) | GCS Bucket URL. | | | [notebook](outputs.tf#L27) | Vertex AI notebook details. | | | [project](outputs.tf#L35) | Project id. | | -| [service-account-vertex](outputs.tf#L45) | Service account to be used for Vertex AI pipelines | | -| [vertex-ai-metadata-store](outputs.tf#L50) | Vertex AI Metadata Store ID. | | -| [vpc](outputs.tf#L40) | VPC Network. | | +| [service-account-vertex](outputs.tf#L40) | Service account to be used for Vertex AI pipelines. | | +| [vertex-ai-metadata-store](outputs.tf#L45) | Vertex AI Metadata Store ID. | | +| [vpc](outputs.tf#L50) | VPC Network. | | ## Test diff --git a/blueprints/data-solutions/bq-ml/outputs.tf b/blueprints/data-solutions/bq-ml/outputs.tf index a23ba484..8299ce2f 100644 --- a/blueprints/data-solutions/bq-ml/outputs.tf +++ b/blueprints/data-solutions/bq-ml/outputs.tf @@ -37,13 +37,8 @@ output "project" { value = module.project.project_id } -output "vpc" { - description = "VPC Network." - value = local.vpc -} - output "service-account-vertex" { - description = "Service account to be used for Vertex AI pipelines" + description = "Service account to be used for Vertex AI pipelines." value = module.service-account-vertex.email } @@ -51,3 +46,8 @@ output "vertex-ai-metadata-store" { description = "Vertex AI Metadata Store ID." value = google_vertex_ai_metadata_store.store.id } + +output "vpc" { + description = "VPC Network." + value = local.vpc +}