Cloud Logging
Grant Teleskope Access to Cloud Logging
Terraform
Variable
Description
Example
resource "google_project_iam_member" "teleskope" {
for_each = toset([
"roles/logging.privateLogViewer",
"roles/container.clusterViewer"
])
project = "project_id"
role = each.key
member = "serviceAccount:${google_service_account.teleskope.email}"
}Last updated
Was this helpful?
