Before you begin
Before starting the tutorial, do the following:- Create an AWS account and log in, then:
Step 1. Create a CockroachDB Standard cluster
- . If this is your first CockroachDB Cloud organization, it will be credited with $400 in to get you started.
- On the Get Started page, click Create cluster.
- On the Select a plan page, select Standard.
- On the Cloud & Regions page, select a cloud provider (GCP or AWS).
- In the Regions section, select a region for the cluster. Refer to for the regions where CockroachDB Standard clusters can be deployed. To create a multi-region cluster, click Add region and select additional regions.
- Click Next: Capacity.
- On the Capacity page, keep the at the default value of 2 vCPUs. Click Next: Finalize.
- On the Finalize page, name your cluster. If an active free trial is listed in the right pane, you will not need to add a payment method, though you will need to do this by the to maintain your organization’s clusters. Click Create cluster. Your cluster will be created in a few seconds and the Create SQL user dialog will display.
Step 2. Get the code
In a terminal, clone the sample code’s GitHub repo:- node.js
- Python
The Node.js function code is located in the The Lambda function uses the node-postgres modules to connect to your cluster.
examples-aws-lambda/node directory and has the following structure:Step 3. (Optional) Create the deployment package
Creating a deployment package to deploy the sample function is optional. Theexamples-aws-lambda repo includes deployment packages that are ready to deploy.
-
In the
nodedirectory, install the code dependencies: -
Compress the project files to a ZIP file in the parent directory for deployment:
-
In the
pythondirectory, download and install thepsycopg2-binaryPython library:
To run on Amazon Linux distributions,
pscyopg2 dependencies must be compiled for Linux.-
Compress the project files to a ZIP file in the parent directory for deployment:
Step 4. Configure AWS
-
Configure the AWS CLI to authenticate with your AWS account:
Follow the prompts to authenticate as a user with administrator privileges. We do not recommend using the
rootuser. -
Create an execution role for the Lambda function and attach the
AWSLambdaBasicExecutionRolepolicy to the role. The Lambda function needs this role to run.
Step 5. Deploy the function to AWS Lambda
-
In the deployment package directory, use the AWS CLI to create a Lambda function:
Where:
<regionis the region closest to your CockroachDB deployment.<account-idis your AWS account ID.<connection-stringis the connection string to the CockroachDB cluster.
To connect to a CockroachDB Standard cluster with Psycopg2, you must provide the client with a valid CA certificate. By default, Pscyopg2 searches for the certificate at
~/.postgresql/root.crt and in the location point to by the environment variable PGSSLROOTCERT.-
Invoke the function:

