惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

爱范儿
爱范儿
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
Y
Y Combinator Blog
I
InfoQ
美团技术团队
罗磊的独立博客
B
Blog RSS Feed
GbyAI
GbyAI
小众软件
小众软件
IT之家
IT之家
Engineering at Meta
Engineering at Meta
Blog — PlanetScale
Blog — PlanetScale
V
V2EX
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
Jina AI
Jina AI
MyScale Blog
MyScale Blog
博客园 - 聂微东
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
Apple Machine Learning Research
Apple Machine Learning Research
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Day 3 — AWS CloudTrail Setup
Ismail G. · 2026-05-16 · via DEV Community

After securing the root account, enabling MFA, and configuring IAM access, the next critical step is visibility.
It is important to know:

  • who changed what,
  • when it changed,
  • from where it changed,
  • and which API call caused the issue.

If an EC2 instance gets deleted, a security group changes unexpectedly, CloudTrail helps you trace the exact action.

Goal

By the end of this setup, logs will be stored securely in S3 and the trail will capture events across all AWS regions.

This setup aligns with AWS security best practices and the AWS Well-Architected Framework.

Step 1 — Create a CloudTrail Trail

AWS now provides a very good default setup through:
CloudTrail → Quick create

Quick Create automatically configures:

  • Multi-region logging
  • Secure S3 log storage
  • Encryption
  • Log validation
  • Management event tracking This gives a secure baseline without unnecessary complexity.

Step 2 — Review the Created Trail

After Quick Create finishes, go to:
CloudTrail → Trails
and open the newly created trail.

What to Verify on This Screen


Trail Logging
Logging → Enabled
This confirms CloudTrail is actively recording AWS API activity.

Multi-Region Trail
Multi-region trail → Yes
This ensures all AWS regions are covered automatically.

S3 Log Location
CloudTrail automatically created an S3 bucket for log storage.
Example:
aws-cloudtrail-logs-xxxxxxxx
This is where CloudTrail audit logs are stored.

*Organization Trail *
If you use AWS Organizations you can enable:
Apply trail to my organization

This allows centralized CloudTrail logging across multiple AWS accounts.

Management Events Configuration

API Activity:
Read → Enabled
Write → Enabled

This records infrastructure-level AWS operations such as:
IAM changes,
EC2 actions,
VPC modifications,
Security Group updates,
Route table changes,
and CloudTrail configuration updates.

AWS KMS Events:
Disabled / Unchecked
This provides better visibility into encryption-related activity.

Amazon RDS Data API Events:
Disabled / Unchecked
This keeps database API activity visible in CloudTrail logs.

Data Events
Disabled
Because Data Events can generate very large amounts of logs.
Examples:

  • S3 object-level access logging
  • Lambda invocation logging
  • DynamoDB object activity These can significantly increase AWS costs in active environments. You can later enable specific Data Events only when necessary.

Insights Events
Disabled initially
CloudTrail Insights is an anomaly detection feature that analyzes unusual AWS API activity patterns.
Examples:

  • abnormal API spikes,
  • unusual IAM behavior,
  • unexpected operational activity.

You can enable it later as infrastructure and security requirements grow.

Understanding the CloudTrail Navigation Menu

After creating the trail, it is useful to understand the main sections inside the CloudTrail console.
As your startup infrastructure grows, these sections become increasingly important for troubleshooting, auditing, and security monitoring.

Dashboard

CloudTrail → Dashboard
The Dashboard provides a high-level overview of CloudTrail activity.
Here you can quickly see:

  • recent event activity,
  • trail health,
  • event trends,
  • and overall logging visibility. This is usually the first place to check when verifying that CloudTrail is functioning correctly.

Event Coverage

CloudTrail → Event coverage
This section shows how much of your AWS environment is covered by Events logging.

An event in CloudTrail is the record of an activity in an AWS account. This activity can be an action taken by an IAM identity, or service that is monitorable by CloudTrail. CloudTrail events provide a history of both API and non-API account activity made through the AWS Management Console, AWS SDKs, command line tools, and other AWS services.

CloudTrail log files aren't an ordered stack trace of the public API calls, so events don't appear in any specific order.

There are four types of CloudTrail events:

  • Management events
  • Data events
  • Network activity events
  • Insights events

Event History

CloudTrail is enabled by default for your AWS account and you automatically have access to the CloudTrail event history. The event history provides a viewable, searchable, downloadable, and immutable record of the past 90 days of management events in an AWS Region.

These events capture activity made through the AWS Management Console, AWS Command Line Interface, and AWS SDKs and APIs. The event history records events in the AWS Region where the event happened. There are no CloudTrail charges for viewing the event history.

Examples:

  • Who deleted an EC2 instance?
  • Which IAM user modified a policy?
  • When was a security group changed?
  • Which API call created a new resource?

Event History is the primary troubleshooting and audit screen.

Insights

AWS CloudTrail Insights help AWS users identify and respond to unusual activity associated with API call rates and API error rates by continuously analyzing CloudTrail management and data events.

What is Next?

Once CloudTrail is enabled, every infrastructure action starts leaving an audit trail.

This becomes extremely useful later when you begin working with:

  • Terraform automation
  • CI/CD pipelines
  • IAM role separation
  • production deployments
  • incident response
  • compliance requirements

In the next part of this Startup Infrastructure Setup series, we will focus on Infrastructure Governance and Infrastructure as Code. The next stage will move toward building a scalable, centralized, and team-friendly cloud foundation for startup environments.