Skip to content

Commit

Permalink
Gateway: Grant myself permission to create Stackdriver workspaces
Browse files Browse the repository at this point in the history
  • Loading branch information
gnarea committed Jan 26, 2021
1 parent f0853b0 commit bcad0b0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions environments/_modules/gateway/stackdriver.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
resource "google_project_iam_binding" "stackdriver_dashboard_editor" {
// Grant ourselves permission to create workspaces because Terraform doesn't support it:
// https://github.com/hashicorp/terraform-provider-google/issues/2605
role = "roles/monitoring.dashboardEditor"
members = [var.sre_iam_uri]
}

0 comments on commit bcad0b0

Please sign in to comment.