79431371

Date: 2025-02-11 21:39:11
Score: 1
Natty:
Report link

This is latest recommended approach from GCP docs here: https://cloud.google.com/run/docs/authenticating/public#terraform

resource "google_cloud_run_service_iam_binding" "default" {
  location = google_cloud_run_v2_service.default.location
  service  = google_cloud_run_v2_service.default.name
  role     = "roles/run.invoker"
  members = [
    "allUsers"
  ]
}
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
Posted by: stefan2718