Skip to content

Commit

Permalink
Add colab runtime permissions to test projects (#12772)
Browse files Browse the repository at this point in the history
  • Loading branch information
rileykarson authored Jan 16, 2025
1 parent ce015c1 commit 667e9e4
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .ci/infra/terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -468,6 +468,13 @@ resource "google_project_iam_member" "compute_agent_encrypter_decrypter" {
member = "serviceAccount:service-${google_project.proj.number}@compute-system.iam.gserviceaccount.com"
}

# TestAccColabRuntime_colabRuntimeBasicExample
# TestAccColabRuntime_colabRuntimeFullExample
resource "google_project_iam_member" "colab_admin_permissions" {
project = google_project.proj.project_id
role = "roles/aiplatform.colabEnterpriseAdmin"
member = "user:[email protected]"
}

data "google_organization" "org2" {
organization = var.org2_id
Expand Down

0 comments on commit 667e9e4

Please sign in to comment.