Introduction To AWS DevOps Agent

TL; DR

DevOps Agent is an read-only AI agent that focuses on investigating incidents, finding root causes, and providing mitigation plans.

What Is DevOps Agent?

In 2025 re-invent, AWS released three new featers in Frontier Agent: Kiro Autonomous Agent, Security Agent, and DevOps Agent.

AWS DevOps Agent acts as an autonomous on-call engineer to investigate incidents, find root causes, and provide mitigation plans. Users can interact with it on the webapp. At this moment (Jan 13, 2026), DevOps Agent is still in preview and available in AWS us-east-1 region. You can try it freely while the pricing is not announced.

What DevOps Agent CAN Do?

Integrations

  1. Built-in integrations
    1. Telemetry: Amazon CloudWatch, Dynatrace, Datadog, New Relic, and Splunk
    2. Pipeline: GitHub, GitLab.
    3. Communication: ServiceNow, Slack
  2. Custom MCP servers

When connecting to a GitHub account, you can specify a GitHub repo.
With custom MCP servers, you can connect to your own custom telemetry sources, like Grafana., but they are read-only.

Functions

  1. Monitor and investigate incidents
    1. Detect CloudWatch alarms
    2. Analyze logs and metrics
    3. Analyzing performance issues
    4. Find root causes of errors and write RCA (Root Cause Analysis) report
    5. Provide mitigation recommendations
    6. Track deployment impact
  2. Provide recommendations
    1. Suggest infrastructure improvements
    2. Recommend monitoring enhancements
    3. Identify capacity issues

What AWS DevOps Agent CANNOT Do

  1. Write or modify code
  2. Create pull requests
  3. Deploy code changes
  4. Access your GitHub repository to make changes
  5. Automatically fix bugs in your codebase
  6. Analyze a broken UI

Steps To Setup

You can follow the tutorial DevOps Agent Storylane, though some UI and flows are outdated.

Create An Agent Space

Enable Web App And Create A Role

Data Display

After creating the role and waiting for a while, the top resources will display without additional settings.

Best Practices To Grant Permissions

You can limit which AWS services the agent can access by modifying the IAM policies attached to
the agent’s roles. When creating custom policies, follow these best practices:

  • Grant only read-only permissions – The agent needs to read resource configurations, metrics,
    and logs during investigations. Avoid granting permissions that allow the agent to modify or
    delete resources. This read-only limitation is crucial to prevent prompt injection attacks,
    where malicious inputs could potentially trick the agent into executing destructive operations
    on your infrastructure.
  • Limit to necessary services – Include only the AWS services that contain resources relevant to
    your applications. For example, if your application doesn’t use Amazon RDS, don’t include RDS
    permissions in the policy.
  • Use specific actions instead of wildcards – Instead of granting service:* permissions, specify
    individual actions like cloudwatch:GetMetricData or ec2:DescribeInstances.

My Test Settings

  1. EC2 t2.micro x 1
  2. PostgreSQL x 1
  3. Django Site x 1
  4. CloudWatch alarms x 1

Analysis Results

I set a sensitive alarm threshold by CPUUtilization > 5. It helped me easily trigger the alarm and view the analysis results.

Advanced Questions

1. Is there a guardrail in DevOps Agent?

No

2. Can I customize the prompts?

You can add custom system instructions in runbooks.

3. Can DevOps Agents Block Malicious Attack Like DDoS?

Direct detection: ❌ No – Not designed for this
Indirect detection: ⚠️ Maybe – Can identify unusual traffic patterns and operational symptoms
DDoS mitigation: ❌ No – Cannot block or mitigate attacks
Investigation help: ✅ Yes – Can investigate operational impact after attack is detected

My Expectation

DevOps Agent can automatically fix bugs and create pull requests, but it still needs human review, approval, and deployment.

Last But Not Least

LLM is powerful enough now, you can feed the whold PDF (149 pages) to the Claude to answer any questions.

Reference

  1. AWS DevOps Agent Documentation: PDF / HTML

🚀 Unlock Ads-Free Experience At $5/year

14 days free trial Cancel anytime

10 thoughts on “Introduction To AWS DevOps Agent”

Leave a Comment

Your email address will not be published. Required fields are marked *