Cloud Run: Health Check
cloud-run-health-check-defaults.ts
const config = {
appName: "test-app",
customerName: "pan",
components: {
www: {
dir: "www",
build: {
type: "node",
},
deploy: {
type: "google-cloudrun",
projectId: "google-project-id",
region: "europe-west6",
service: {
healthCheck: true,
},
},
},
},
} satisfies Config;