Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion vertex_ai_index_endpoint_with_false_psc/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
resource "google_vertex_ai_index_endpoint" "index_endpoint" {
display_name = "sample-endpoint"
display_name = "sample-endpoint-${local.name_suffix}"
description = "A sample vertex endpoint"
region = "us-central1"
labels = {
Expand Down
2 changes: 1 addition & 1 deletion vertex_ai_index_endpoint_with_psc/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
resource "google_vertex_ai_index_endpoint" "index_endpoint" {
display_name = "sample-endpoint"
display_name = "sample-endpoint-${local.name_suffix}"
description = "A sample vertex endpoint"
region = "us-central1"
labels = {
Expand Down
2 changes: 1 addition & 1 deletion vertex_ai_index_endpoint_with_public_endpoint/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
resource "google_vertex_ai_index_endpoint" "index_endpoint" {
display_name = "sample-endpoint"
display_name = "sample-endpoint-${local.name_suffix}"
description = "A sample vertex endpoint with an public endpoint"
region = "us-central1"
labels = {
Expand Down