Deploying to Lamba/Cloud Run
Deploy TypeScript workflows to AWS Lambda or GCP Cloud Run using the Fastn CLI and Pulumi-managed infrastructure.
Deployment targets
Target
Handler
Infrastructure
Best for
Preparing your workflow for deployment
AWS Lambda
import { createLambdaHandler } from '@fastn/runtime';
import syncOrders from './workflows/sync-orders';
export const handler = createLambdaHandler(syncOrders);GCP Cloud Run
import { createCloudRunHandler } from '@fastn/runtime';
import syncOrders from './workflows/sync-orders';
createCloudRunHandler(syncOrders);Deploying with the CLI
To AWS Lambda
To GCP Cloud Run
Managing deployments
Execution runtime
Environment-specific configuration
What you've done
Last updated
Was this helpful?

