We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e668286 commit 7365682Copy full SHA for 7365682
.github/workflows/ci.yml
@@ -54,5 +54,6 @@ jobs:
54
- uses: google-github-actions/deploy-cloudrun@v1
55
with:
56
service: staging-plugin-registry
57
+ region: europe-west1
58
image: gcr.io/go-semantic-release/plugin-registry:${{ steps.semrel.outputs.version }}
59
if: steps.semrel.outputs.version != ''
infrastructure/gcr/main.tf
@@ -66,3 +66,13 @@ resource "google_cloud_run_v2_service" "default" {
66
percent = 100
67
}
68
69
+
70
+// allow public access
71
+resource "google_cloud_run_service_iam_binding" "default" {
72
+ location = google_cloud_run_v2_service.default.location
73
+ service = google_cloud_run_v2_service.default.name
74
+ role = "roles/run.invoker"
75
+ members = [
76
+ "allUsers"
77
+ ]
78
+}
0 commit comments