When it comes to hosting a static website—be it a single-page app or a feature-rich client-side framework—AWS provides an extremely reliable and cost-effective solution using S3 and CloudFront. With the AWS Cloud Development Kit (CDK), we can define all necessary resources in TypeScript (or other supported languages) and deploy them as Infrastructure as Code (IaC), making the process repeatable and easily maintainable.
This post will walk you through:
- Setting up your local environment
- Initializing a new CDK project
- Creating a custom CDK construct for hosting a static site (S3 + CloudFront + Route53)
- Deploying your website step-by-step (build → synth → deploy)
Prerequisites & Setup
1. AWS Account
You’ll need an AWS account to deploy your website. If you don’t have one yet, head over to aws.amazon.com to sign up. It’s free to create an account, and you get 12 months of free tier access to many services.
2. Domain and Hosted Zone
For a custom domain such as my private timhartmann.de
, you need a Hosted Zone in Route53. This is a requirement for setting up the DNS records and getting a valid SSL certificate via AWS Certificate Manager.
- If you’ve purchased a domain directly through AWS, the system automatically sets up a Hosted Zone for you.
- If you own a domain elsewhere, you’ll need to manually create and configure a Hosted Zone in Route53, then update your domain registrar’s name servers to use Route53.
3. AWS CLI and CDK Installation
If you haven’t installed the AWS Command Line Interface (CLI) yet, you can do so by following the AWS CLI installation docs. Once installed, run:
1 | aws configure |
to set your AWS credentials and default region.
Then, install the AWS CDK:
1 | npm install -g aws-cdk |
4. Initialize a CDK App
Create a new directory for your project, then initialize a new TypeScript-based CDK app:
1 | mkdir my-static-website |
This sets up a basic CDK project structure, including a bin
and lib
folder, a cdk.json
config file, and more.
5. Standard Project Setup
Inside the newly created directory, install any Node dependencies we may need and then build it a first time:
1 | npm install |
The Static Website Construct
Below is a custom construct that bundles together:
- An S3 bucket (for website files)
- A CloudFront distribution (to deliver files worldwide over AWS’s edge network)
- Route53 DNS records (so that your custom domain points to the site)
- SSL certificate for HTTPS via AWS Certificate Manager
1 | import { Construct } from 'constructs'; |
Usage in a CDK Stack
Here’s an example of how to use this construct inside a CDK Stack. You might place this in lib/MyWebsiteStack.ts
:
1 | import * as cdk from 'aws-cdk-lib'; |
Make sure to substitute the hostedZoneId
with your actual Hosted Zone ID. If you’re copying from Route53, you’ll see it labeled as “Hosted Zone ID.”
Deploying the Stack
When we initialized the CDK project, it created a bin
folder with a TypeScript file, named like your project, that defines the infrastructure to deploy.
This file is the entry point for your CDK app and is where you define the stacks to deploy. This example only has a single Stack.
1 |
|
Assuming you already ran cdk init
and have your project structure in place, you can follow these steps anytime you change either the infrastructure code (e.g., the CloudFront distribution) or your actual website files:
- Update your website files in the
site-contents
folder. - Build (if you have a build step):This compiles your TypeScript code.
1
npm run build
- Synthesize your CloudFormation template:This produces the final CloudFormation stack.
1
cdk synth
- Deploy to AWS:
1
cdk deploy
CDK will zip up and upload the contents from site-contents
into the S3 bucket and create or update any AWS resources defined in our construct. After the deployment finishes, you’ll have a fully functioning static website available over HTTPS at your custom domain!
Why CloudFront?
Using CloudFront in front of your S3 bucket offers several benefits:
- Global Edge Locations: Your content is served from edge caches around the world, resulting in faster load times.
- Security & SSL: CloudFront handles SSL certificates from AWS Certificate Manager, ensuring your site is always served over HTTPS.
- Cost-Effectiveness: Storing static assets in S3 is cheap, and you pay only for what you use in CloudFront.
- Scalability & Reliability: Automatically handles traffic spikes without you having to manage any servers or capacity.
Conclusion
Deploying a static website with AWS CDK is straightforward and powerful. By treating your infrastructure as code, you get repeatability, version control, and the ability to continuously evolve your stack. With CloudFront’s caching and Route53’s DNS integration, your website is served quickly and reliably from a globally distributed network.
Try it out for personal projects or even for enterprise-grade frontends that don’t require complex server-side logic. If you have any questions or run into any issues, feel free to drop me a message on GitHub or LinkedIn!