AWS Pathway Blog
· 2 min read
This directory contains the blog content for AWS Pathway, organized by categories for better scalability and maintainability.
Directory Structure
blog/
├── aws-services/ # Deep dives into specific AWS services
├── security/ # Security best practices and guides
├── cost-optimization/# Cost management and optimization
├── best-practices/ # General AWS best practices
├── tutorials/ # Step-by-step tutorials
├── authors.yml # Author definitions
├── tags.yml # Tag definitions
└── README.md # This file
Content Guidelines
File Naming Convention
- Use date prefix:
YYYY-MM-DD-descriptive-title.md
- Use kebab-case for titles
- Be descriptive but concise
Frontmatter Requirements
---
slug: unique-slug-name
title: Descriptive Title
date: YYYY-MM-DD
authors: [awspathway]
tags: [relevant, tags, here]
---
Content Structure
- Introduction - Brief overview of the topic
- Prerequisites - What readers should know
- Main Content - Detailed explanation with code examples
- Conclusion - Summary and next steps
- Use
<!--truncate-->
after the first paragraph for excerpts
Tags
Use relevant tags from tags.yml
. Common categories:
- Services:
aws
,lambda
,s3
,ec2
,rds
, etc. - Topics:
security
,cost-optimization
,best-practices
, etc. - Types:
tutorial
,architecture
,devops
, etc.
Code Examples
- Use proper syntax highlighting
- Include complete, working examples
- Add comments for clarity
- Follow AWS best practices
Adding New Content
- Choose appropriate category directory
- Create new markdown file with proper naming
- Add required frontmatter
- Write content following guidelines
- Add new tags to
tags.yml
if needed - Test locally before committing
Categories
- aws-services/: In-depth service guides and best practices
- security/: Security configurations, compliance, and protection
- cost-optimization/: Cost management strategies and tools
- best-practices/: General AWS best practices and patterns
- tutorials/: Step-by-step hands-on tutorials