Fix test.

This commit is contained in:
lcaggio 2023-03-04 08:25:29 +01:00
parent 8d70e1d900
commit f8a7aa865a
2 changed files with 9 additions and 9 deletions

View File

@ -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. | |
<!-- END TFDOC -->
## Test

View File

@ -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
}