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.
Quickstart
Section titled “Quickstart”You can also read the full Astro on AWS with SST tutorial that will guide you through the steps.
SST components
Section titled “SST components”To use any additional SST components, add them to 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.