Created
May 12, 2020 14:53
-
-
Save ojhaujjwal/0368fd59ee4e1c6b31b1c2c5c6afbbd9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resource "google_cloud_run_service_iam_binding" "binding" { | |
location = google_cloud_run_service.nodejs_app.location | |
service = google_cloud_run_service.nodejs_app.name | |
role = "roles/run.invoker" | |
members = [ | |
"allUsers", | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment