Skip to content

Deploy your Astro Site to AWS with SST

How to deploy your Astro site to AWS with SST

You can deploy an Astro site to AWS using SST, an open-source framework for deploying modern full-stack applications with SSG and SSR support.

You can also use any additional SST components like cron jobs, Buckets, Queues, etc while maintaining type-safety.

You can also read the full Astro on AWS with SST tutorial that will guide you through the steps.

To use any additional SST components, add them to sst.config.ts.

sst.config.ts
const bucket = new sst.aws.Bucket("MyBucket", {
access: "public",
});
new sst.aws.Astro("MyWeb", {
link: [bucket],
});

And then access them in your .astro file.

---
import { Resource } from "sst"
console.log(Resource.MyBucket.name)
---

Consult the SST docs on linking resources to learn more.

If you have any questions, you can ask in the SST Discord.