-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
29d3634
commit e0a50f2
Showing
3 changed files
with
78 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
output "private_endpoint_ip_address" { | ||
description = "The private IP address of the vector search endpoint" | ||
value = google_compute_address.vector_search_static_ip.address | ||
} | ||
|
||
output "host_vpc_project_id" { | ||
description = "This is the Project ID where the Host VPC network is located" | ||
value = var.vector_search_vpc_project | ||
} | ||
|
||
output "host_vpc_network" { | ||
description = "This is the Self-link of the Host VPC network" | ||
value = var.network | ||
} | ||
|
||
output "notebook_project_id" { | ||
description = "The Project ID where the notebook will be run on" | ||
value = var.machine_learning_project | ||
} | ||
|
||
output "vector_search_bucket_name" { | ||
description = "The name of the bucket that Vector Search will use" | ||
value = google_storage_bucket.vector_search_bucket.name | ||
} |