You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update `otel-collector-config.yaml` with your function name and region as needed.
105
94
106
-
Create a Lambda function in AWS with:
107
-
108
-
-**Runtime**: Node.js >=20
109
-
-**Handler**: `index.handler` (the default)
110
-
-**Architecture**: x86_64
111
-
112
-
It's likely you will need to increase the default memory limit in AWS for your lambda. A minimum of
113
-
256MB is recommended.
114
-
115
-
Then deploy:
95
+
### 5. Deploy the Lambda function
116
96
117
97
```bash
118
98
./deploy-lambda.sh <function-name>
@@ -121,7 +101,11 @@ Then deploy:
121
101
This compiles TypeScript, pre-bundles Workflow code, packages everything with dependencies,
122
102
and uploads to AWS Lambda.
123
103
124
-
### 5. Start a Workflow
104
+
### 6. Configure Temporal to be able to invoke your lambda function
105
+
106
+
Refer to the docs [here](https://docs.temporal.io/production-deployment/worker-deployments/serverless-workers/aws-lambda#create-worker-deployment-version).
107
+
108
+
### 7. Start a Workflow
125
109
126
110
Use the starter program to execute a Workflow on the Lambda worker, using
127
111
the same config file the Lambda uses for connecting to the server:
0 commit comments