Skip to content

Commit

Permalink
feat: DEVOPS-1795 provide nodes admin access to persistence bucket (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
frankmeds authored Dec 24, 2024
1 parent e8821e9 commit b385200
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions infra/tf/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ resource "google_storage_bucket" "persistence" {
}
}

resource "google_storage_bucket_iam_binding" "persistence_bucket_viewers" {
resource "google_storage_bucket_iam_binding" "persistence_bucket_admins" {
bucket = google_storage_bucket.persistence.name
role = "roles/storage.objectViewer"
role = "roles/storage.objectAdmin"
members = [
"serviceAccount:${module.bootstraps.service_account.email}",
"serviceAccount:${module.validators.service_account.email}",
Expand Down

0 comments on commit b385200

Please sign in to comment.