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.
2 parents 5bb7092 + 336f7d5 commit a930e19Copy full SHA for a930e19
infra/main.tf
@@ -106,13 +106,14 @@ resource "google_secret_manager_secret_iam_binding" "nextauth_secret" {
106
}
107
108
### Cloud Run service resources and network endpoint group ###
109
-
+#### Service Account
110
resource "google_service_account" "cloud_run" {
111
project = var.project_id
112
- account_id = "sa-run"
113
- display_name = "Service account for ${var.deployment_name} Cloud Run service."
+ account_id = "cloud-run-service-account"
+ display_name = "${var.deployment_name} Cloud Run service Service Account."
114
115
116
+#### Cloud Run IAM
117
resource "google_project_iam_member" "run_datastore_owner" {
118
119
role = "roles/datastore.owner"
0 commit comments