No description
Find a file
Daisuke b9d4623d63 chore: add CI/CD tooling and project configuration
- Add commit-message-generator skill for standardized commit messages
 - Add buildspec.yml for CodeBuild Docker image build process
 - Add build-artifact.sh script for creating deployment packages
 - Add .gitignore to exclude zip files from version control
2026-01-04 12:47:40 +09:00
.github/skills/commit-message-generator chore: add CI/CD tooling and project configuration 2026-01-04 12:47:40 +09:00
ci chore: add CI/CD tooling and project configuration 2026-01-04 12:47:40 +09:00
cmd/lambda refactor: improve Lambda handler and update Go to 1.25.5 2026-01-04 10:02:12 +09:00
docker refactor: improve Lambda handler and update Go to 1.25.5 2026-01-04 10:02:12 +09:00
infra/cfn feat: enhance Lambda function configuration and add outputs 2026-01-04 12:46:05 +09:00
scripts chore: add CI/CD tooling and project configuration 2026-01-04 12:47:40 +09:00
test Restructure project layout and add ECR repository CloudFormation template 2025-12-31 19:24:08 +09:00
.gitignore chore: add CI/CD tooling and project configuration 2026-01-04 12:47:40 +09:00
go.mod Restructure project layout and add ECR repository CloudFormation template 2025-12-31 19:24:08 +09:00
go.sum Restructure project layout and add ECR repository CloudFormation template 2025-12-31 19:24:08 +09:00
README.md Add project overview and infrastructure description to README 2025-12-31 19:33:55 +09:00

n-daisuke-blog-deployment-source

Infrastructure as Code (IaC) for automating static blog deployment using AWS services.

This repository defines the infrastructure required to update and publish blog articles via AWS CodePipeline and Lambda (written in Go). It includes CloudFormation templates for provisioning all necessary components, such as:

  • S3: Source bucket for blog content
  • CloudFront: CDN for blog delivery
  • CodePipeline: CI/CD pipeline triggered by source updates
  • Lambda (Go): Custom deployment logic executed within the pipeline
  • ECR: Container repository for Lambda packaging
  • Secrets Manager: Secure storage for deployment keys

All infrastructure is declaratively managed via CloudFormation templates under infra/cfn/.

The Lambda source code and related tests are located in:

  • cmd/lambda/ Lambda entrypoint (Go)
  • test/ Unit tests for Lambda logic