Skip to content

Commit

Permalink
Fix PSC allowlist project ids
Browse files Browse the repository at this point in the history
  • Loading branch information
ericgribkoff committed Nov 27, 2024
1 parent 5863e7a commit 58b8a21
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion vertex_ai/index_endpoint_deploy_psc/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ resource "google_vertex_ai_index_endpoint" "default" {
private_service_connect_config {
enable_private_service_connect = true
project_allowlist = [
data.google_project.project.name,
data.google_project.project.project_id,
]
}
}
Expand Down
2 changes: 1 addition & 1 deletion vertex_ai/index_endpoint_mutate_psc/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ resource "google_vertex_ai_index_endpoint" "default" {
private_service_connect_config {
enable_private_service_connect = true
project_allowlist = [
data.google_project.project.name,
data.google_project.project.project_id,
]
}
}
Expand Down
2 changes: 1 addition & 1 deletion vertex_ai/index_endpoint_psc/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ resource "google_vertex_ai_index_endpoint" "default" {
private_service_connect_config {
enable_private_service_connect = true
project_allowlist = [
data.google_project.project.name,
data.google_project.project.project_id,
]
}
}
Expand Down

0 comments on commit 58b8a21

Please sign in to comment.