forked from GoogleCloudPlatform/magic-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(vertexai): Make it possible to create a public Vertex AI Index E…
…ndpoint (GoogleCloudPlatform#8852)
- Loading branch information
1 parent
93ab12f
commit 83fb65f
Showing
2 changed files
with
25 additions
and
0 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
11 changes: 11 additions & 0 deletions
11
mmv1/templates/terraform/examples/vertex_ai_index_endpoint_with_public_endpoint.tf.erb
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,11 @@ | ||
resource "google_vertex_ai_index_endpoint" "<%= ctx[:primary_resource_id] %>" { | ||
display_name = "sample-endpoint" | ||
description = "A sample vertex endpoint with an public endpoint" | ||
region = "us-central1" | ||
labels = { | ||
label-one = "value-one" | ||
} | ||
|
||
public_endpoint_enabled = true | ||
} | ||
|