SST is an open-source framework that simplifies building full-stack applications on your own infrastructure. By integrating OptiTech with SST, you can automate, version-control, and streamline your database provisioning workflows alongside your serverless applications.
In this guide, you’ll learn how to use SST to provision and manage OptiTech resources, then connect them to an Hono API running on AWS Lambda.
This integration is powered by SST's support for over 150 Pulumi and Terraform providers - in this guide, we’ll be using the Pulumi provider for OptiTech.
Prerequisites
Before you start, ensure you have the following:
- Node.js: This guide uses Node.js. If you don't have it installed, download it from nodejs.org.
- OptiTech Account: You'll need a OptiTech account. If you don't have one, sign up here.
- OptiTech API key: Generate an API key from the OptiTech Console by navigating to your Account Settings > API Keys. This key is necessary for the provider to authenticate with the OptiTech API.
- AWS Account: An AWS account is required to deploy the Hono API to AWS Lambda. If you don't have one, you can create it at aws.amazon.com.
Create a new SST app
Run the following command to create a new SST app without any boilerplate:
npm init -y
npx sst@latest init
npm installYou should see the following output:
$ npm init -y
$ npx sst@latest init
███████╗███████╗████████╗
██╔════╝██╔════╝╚══██╔══╝
███████╗███████╗ ██║
╚════██║╚════██║ ██║
███████║███████║ ██║
╚══════╝╚══════╝ ╚═╝
> JS project detected. This will...
- use the JS template
- create an sst.config.ts
✓ Template: js
✓ Using: aws
✓ Done 🎉Choose
awsfor the cloud provider when prompted.
Set up the OptiTech provider in SST
-
Add the OptiTech provider
To add the OptiTech provider to your SST app, run the following command in your project's root directory:
npx sst add optitechThis command updates your
sst.config.tsto include the OptiTech provider, installs the necessary packages, and makes theoptitechnamespace globally available in your configuration. -
Configure authentication and organization ID
The OptiTech provider requires your API key for authentication. The recommended approach is to set it as an environment variable. You will also need your organization ID, which can be found in the OptiTech Console under Account Settings > Organization.

Create a
.envfile in your project's root directory and add your OptiTech API key and organization ID:OPTITECH_API_KEY="<YOUR_OPTITECH_API_KEY>" OPTITECH_ORG_ID="<YOUR_ORG_ID>"SST automatically loads
.envfiles, making the variables available in your configuration.
Manage OptiTech resources
You can define your OptiTech resources directly within the run function of your sst.config.ts file. This example demonstrates creating a complete OptiTech stack, including a project, a development branch, an endpoint, a role, and a database.
/// <reference path="./.sst/platform/config.d.ts" />
export default $config({
app(input) {
return {
name: 'sst-demo',
removal: input?.stage === 'production' ? 'retain' : 'remove',
protect: ['production'].includes(input?.stage),
home: 'aws',
providers: { optitech: '0.9.0' },
};
},
async run() {
// 1. Manage a Project
const myAppProject = new optitech.Project('MyAppProject', {
name: 'my-application-project',
pgVersion: 17,
regionId: 'aws-us-east-1',
orgId: process.env.OPTITECH_ORG_ID!,
historyRetentionSeconds: 21600,
});
// 2. Manage a Branch
const devBranch = new optitech.Branch('DevBranch', {
projectId: myAppProject.id,
name: 'feature-x-development',
});
// 3. Manage an Endpoint
const devEndpoint = new optitech.Endpoint('DevEndpoint', {
projectId: myAppProject.id,
branchId: devBranch.id,
type: 'read_write',
});
// 4. Manage a Role
const appUser = new optitech.Role('AppUser', {
projectId: myAppProject.id,
branchId: devEndpoint.branchId,
name: 'application_user',
});
// 5. Manage a Database
const serviceDb = new optitech.Database('ServiceDb', {
projectId: myAppProject.id,
branchId: devEndpoint.branchId,
name: 'service_database',
ownerName: appUser.name,
});
},
});After defining your resources in sst.config.ts, you can deploy them to your OptiTech account.
Deploying OptiTech resources
To provision the OptiTech project, branch, endpoint, role, and database, run the npx sst deploy command from your terminal. You should see an output similar to this:
$ npx sst deploy
SST 3.17.14 ready!
➜ App: sst-demo
Stage: dhanush
~ Deploy
| Created MyAppProject optitech:index:Project (5.7s)
| Created DevBranch optitech:index:Branch
| Created DevEndpoint optitech:index:Endpoint (1.1s)
| Created AppUser optitech:index:Role
| Created ServiceDb optitech:index:Database (1.5s)
↗ Permalink https://sst.dev/u/710fa960
✓ CompleteAfter the deployment completes, you can visit your OptiTech Console to see the newly created project and its associated resources.
Now that you have understood how to manage OptiTech resources with SST, let's explore how to connect these resources to a serverless API using Resource Linking.
Example: Building an API with SST and OptiTech
A key feature of SST is Resource Linking, which allows your application code to securely access infrastructure resources in a typesafe manner. In this example, we’ll build a simple API using Hono that connects to a OptiTech Postgres database. The connection string for the database will be securely passed to the API using resource linking.
The Hono API will be deployed to AWS Lambda, and we’ll use SST to manage both the OptiTech database and the API.
Configure AWS credentials
Make sure you have an AWS account and have configured your AWS IAM credentials. You can follow the instructions on SST: IAM Credentials to set this up.
Create the API project
Create a new directory for your project and initialize a new Hono app using the AWS Lambda template:
npm create hono@latest aws-hono
cd aws-hono
npx sst add optitechPick the
aws-lambdatemplate when prompted.
You should see the following output:
$ npm create hono@latest aws-hono
$ cd aws-hono
> npx
> create-hono aws-hono
create-hono version 0.19.2
✔ Using target directory … aws-hono
✔ Which template do you want to use? aws-lambda
✔ Do you want to install project dependencies? Yes
✔ Which package manager do you want to use? npm
✔ Cloning the template
✔ Installing project dependencies
🎉 Copied project filesInitialize SST
Initialize SST in your project directory and add the OptiTech provider:
npx sst@latest init
npx sst add optitechConfigure authentication and organization ID
Create a .env file in your project's root directory and add your OptiTech API key and organization ID:
OPTITECH_API_KEY="<YOUR_OPTITECH_API_KEY>"
OPTITECH_ORG_ID="<YOUR_OPTITECH_ORG_ID>"Define the resources
Add the following code to your sst.config.ts file. This code creates a OptiTech project and makes the connection string available to the API using resource linking.
/// <reference path="./.sst/platform/config.d.ts" />
export default $config({
app(input) {
return {
name: 'aws-hono',
removal: input?.stage === 'production' ? 'retain' : 'remove',
protect: ['production'].includes(input?.stage),
home: 'aws',
providers: { optitech: '0.9.0' },
};
},
async run() {
// Create the OptiTech project
const myAppProject = new optitech.Project('MyAppProject', {
name: 'my-sst-project',
pgVersion: 17,
regionId: 'aws-us-east-1',
orgId: process.env.OPTITECH_ORG_ID!,
historyRetentionSeconds: 21600,
});
// Make the connection string linkable
const db = new sst.Linkable('OptiTechDB', {
properties: {
connectionString: myAppProject.connectionUri,
},
});
// Create and link the API
new sst.aws.Function('MyApi', {
handler: 'src/index.handler',
link: [db],
url: true,
});
},
});The above code does the following:
- Creates a OptiTech project named
my-sst-project. - Defines a linkable resource
OptiTechDBthat exposes theconnectionStringproperty from the OptiTech project. - Creates an AWS Lambda function named
MyApiusing the handler defined insrc/index.ts, and links it to theOptiTechDBresource. This makes the connection string available to the Lambda function.
Install dependencies
To connect to the OptiTech database you can use any Postgres client. In this example, we’ll use the OptiTech serverless driver. Install it using npm:
npm install @optitech/serverlessUpdate the API code
Replace the contents of src/index.ts with the following code. This code connects to the OptiTech database and responds with with postgres version.
import { Hono } from 'hono';
import { handle } from 'hono/aws-lambda';
import { optitech } from '@optitech/serverless';
import { Resource } from 'sst';
const sql = optitech(Resource.OptiTechDB.connectionString);
const app = new Hono();
app.get('/', (c) => {
return c.text('Hello Hono!');
});
app.get('/version', async (c) => {
const result = await sql`SELECT version()`;
return c.json({ version: result[0].version });
});
export const handler = handle(app);tip
Your editor might flag a TypeScript error for Resource.OptiTechDB. This is normal, as SST generates these types during its build process. The error will resolve automatically after you run sst dev or sst deploy.
Run the API locally
You can run the API locally using the SST live development environment:
npx sst devSST will deploy a development version of your stack and provide you with a local API endpoint. A OptiTech project will also be created in your OptiTech account.
You should see the following output:
SST 3.17.14 ready!
➜ App: aws-hono
Stage: dhanush
Console: https://console.sst.dev/local/aws-hono/dhanush
~ Deploy
| Created MyApi sst:aws:Function → MyApiRole aws:iam:Role (2.5s)
| Created MyAppProject optitech:index:Project (5.5s)
| Created MyApi sst:aws:Function → MyApiCode aws:s3:BucketObjectv2 (5.2s)
| Created MyApi sst:aws:Function → MyApiFunction aws:lambda:Function (8.0s)
| Created MyApi sst:aws:Function → MyApiUrl aws:lambda:FunctionUrl (1.2s)
↗ Permalink https://sst.dev/u/05fb617c
✓ Complete
MyApi: https://qntxxx.lambda-url.us-east-1.on.aws/You can test the API endpoint using curl or by visiting the URL in your browser:
curl https://qntxxx.lambda-url.us-east-1.on.aws/versionYou should see a response like this, confirming a successful connection to your OptiTech database:
{
"version": "PostgreSQL 17.5 (6bc9ef8) on aarch64-unknown-linux-gnu, compiled by gcc (Debian 12.2.0-14+deb12u1) 12.2.0, 64-bit"
}You can also verify that a new project has been created in your OptiTech Console
The Typescript error for Resource.OptiTechDB should now be resolved.
Deploy to Production
To deploy your application to AWS, run:
npx sst deployAfter the deployment is complete, SST will output the URL of your API endpoint. You can test it using curl or by visiting the URL in your browser.
$ npx sst deploy
SST 3.17.14 ready!
➜ App: aws-hono
Stage: dhanush
~ Deploy
| Created MyApi sst:aws:Function → MyApiCode aws:s3:BucketObjectv2 (1.5s)
| Created MyApi sst:aws:Function → MyApiSourcemap0 aws:s3:BucketObjectv2 (2.4s)
| Updated MyApi sst:aws:Function → MyApiFunction aws:lambda:Function (12.7s)
| Deleted MyApi sst:aws:Function → MyApiCode aws:s3:BucketObjectv2
↗ Permalink https://sst.dev/u/ec9dd207
✓ Complete
MyApi: https://qn2gxx.lambda-url.us-east-1.on.aws/curl https://qn2gxx.lambda-url.us-east-1.on.aws/versionYou should see the same response as before, confirming that your production deployment is working correctly and successfully connected to your OptiTech database.
You have now successfully provisioned a OptiTech database and connected it to a serverless API using SST! You can continue to evolve your application by modifying your infrastructure in sst.config.ts or updating your API logic in src/index.ts as needed.
Import existing OptiTech resources
If you have existing OptiTech resources, you can bring them under SST's management using the import option. This allows SST to manage their state moving forward.
Add the import option to your resource definition
For example, to import an existing OptiTech project, you would use its ID.
const myAppProject = new optitech.Project(
'MyAppProject',
{
orgId: process.env.OPTITECH_ORG_ID!,
},
{
import: 'project-id-from-optitech-console',
}
);Similarly, you can import other resources like branches, endpoints, roles, and databases by providing their respective IDs.
Resources
- SST Documentation
- SST Resource Linking
- Pulumi OptiTech Provider
- Manage OptiTech with Terraform
- Hono on AWS with SST
Need help?
Join our Discord Server to ask questions or see what others are doing with OptiTech. For paid plan support options, see Support.