Skip to content

A demo for my blog post on how to deploy a serverless infrastructure (DynamoDB, API Gateway, Lambda, S3, CloudFront) using Terraform

Notifications You must be signed in to change notification settings

felipelaptrin/serverless-infra-blog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Serverless Infra (Blog)

Running this project

The only dependency needed to start using this project is Devbox and Nix (if you install Devbox first it will install Nix for you if you don't have it), all the other tools will be installed by it. Make sure your AWS region was already CDK bootstrapped.

  1. Export AWS credentials and region (AWS_REGION) environment variables

  2. Install dependencies

devbox shell
  1. Create S3 for states and DynamoDB table
cd iac/bootstrap
terraform init
terraform apply

Copy the s3-state-bucket-name and dynamodb-lock-table-name because we will use it to run step 5.

  1. Deploy infrastructure

Create variables.tfvars in the iac/src folder.

domain               = "mydomain.com"
frontend_bucket_name = "assets-frontend-serverless-infra-bucket"

Modify the iac/src/versions.tf file to use the correct dynamodb_table and bucket created during bootstrap (exported during step 3). Apply the infrastructure code.

cd ../src/
terraform init
terraform apply --var-file=variables.tfvars

It's expected for this run to fail.

  1. Build and deploy backend image
cd ../../backend/
AWS_ACCOUNT=$(aws sts get-caller-identity --query Account --output text)
aws ecr get-login-password | docker login --username AWS --password-stdin $AWS_ACCOUNT.dkr.ecr.$AWS_REGION.amazonaws.com
docker build -t backend-api .
docker tag backend-api:latest $AWS_ACCOUNT.dkr.ecr.$AWS_REGION.amazonaws.com/backend-api:latest
docker push $AWS_ACCOUNT.dkr.ecr.$AWS_REGION.amazonaws.com/backend-api:latest
  1. Push frontend assets to S3 bucket
cd ../iac/src/
BUCKET=$(terraform output -raw frontend_bucket)
aws s3 sync ../../frontend s3://$BUCKET
  1. Apply Infrastructure again
terraform apply --var-file=variables.tfvars

All done!

About

A demo for my blog post on how to deploy a serverless infrastructure (DynamoDB, API Gateway, Lambda, S3, CloudFront) using Terraform

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published