Skip to content

Commit e423d59

Browse files
authored
Merge branch 'main' into fix/cloud-run-v2-timeouts
2 parents 0e5cf1c + 5bb7092 commit e423d59

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Upon successful provisioning, you should see an output similar to:
2121

2222
```bash
2323
frontend_url = "http://11.222.333.444/"
24-
neos_toc_url = "http://console.cloud.google.com/welcome?walkthrough_id=panels--sic--dynamic-javascript-web-app_toc"
24+
neos_toc_url = "http://console.cloud.google.com?walkthrough_id=panels--sic--dynamic-javascript-web-app_toc"
2525
run_service_name = "dev-journey"
2626
```
2727

infra/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ resource "google_secret_manager_secret_iam_binding" "nextauth_secret" {
109109

110110
resource "google_service_account" "cloud_run" {
111111
project = var.project_id
112-
account_id = "${var.deployment_name}-run"
112+
account_id = "sa-run"
113113
display_name = "Service account for ${var.deployment_name} Cloud Run service."
114114
}
115115

infra/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ output "frontend_url" {
2020

2121
output "neos_toc_url" {
2222
description = "Neos Tutorial URL"
23-
value = "http://console.cloud.google.com/welcome?walkthrough_id=panels--sic--dynamic-javascript-web-app_toc"
23+
value = "http://console.cloud.google.com?walkthrough_id=panels--sic--dynamic-javascript-web-app_toc"
2424
}
2525

2626
output "run_service_name" {

0 commit comments

Comments
 (0)