Skip to content

Commit f7db03b

Browse files
Merge pull request #10 from PolicyEngine/fix-terraform-output
Fix terraform output reference to worker service
2 parents 219a38f + f5bf26e commit f7db03b

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

docs/next.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import type { NextConfig } from "next";
33
const nextConfig: NextConfig = {
44
output: "export",
55
basePath: "/docs",
6+
trailingSlash: true,
67
images: {
78
unoptimized: true,
89
},

terraform/outputs.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ output "api_url" {
88
value = google_cloud_run_v2_service.api.uri
99
}
1010

11-
output "worker_job_name" {
12-
description = "Worker job name"
13-
value = google_cloud_run_v2_job.worker.name
11+
output "worker_service_name" {
12+
description = "Worker service name"
13+
value = google_cloud_run_v2_service.worker.name
1414
}
1515

1616
output "api_service_name" {

0 commit comments

Comments
 (0)