Skip to content

Commit fdaeffe

Browse files
Made vertex ai index endpoints & vertex ai index sweepable (#17510) (#1314)
[upstream:6c5ed49530a2c31a19b336f8e430354d17c6771d] Signed-off-by: Modular Magician <magic-modules@google.com>
1 parent 9083bc7 commit fdaeffe

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

  • vertex_ai_index_endpoint_with_false_psc
  • vertex_ai_index_endpoint_with_psc
  • vertex_ai_index_endpoint_with_public_endpoint

vertex_ai_index_endpoint_with_false_psc/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
resource "google_vertex_ai_index_endpoint" "index_endpoint" {
2-
display_name = "sample-endpoint"
2+
display_name = "sample-endpoint-${local.name_suffix}"
33
description = "A sample vertex endpoint"
44
region = "us-central1"
55
labels = {

vertex_ai_index_endpoint_with_psc/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
resource "google_vertex_ai_index_endpoint" "index_endpoint" {
2-
display_name = "sample-endpoint"
2+
display_name = "sample-endpoint-${local.name_suffix}"
33
description = "A sample vertex endpoint"
44
region = "us-central1"
55
labels = {

vertex_ai_index_endpoint_with_public_endpoint/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
resource "google_vertex_ai_index_endpoint" "index_endpoint" {
2-
display_name = "sample-endpoint"
2+
display_name = "sample-endpoint-${local.name_suffix}"
33
description = "A sample vertex endpoint with an public endpoint"
44
region = "us-central1"
55
labels = {

0 commit comments

Comments
 (0)