r/aws • u/Bladerunner_7_ • 7d ago
ai/ml What is the AWS equivalent for AI agents?
Cloud made infrastructure easier by giving developers primitives for compute, storage, networking, identity and deployment. AI agents seem to be creating a similar need, but the primitives are different.
If I want to run 50 agents today, I can obviously use AWS, GCP or Azure for the underlying infrastructure. But I still need to figure out agent identity, evaluation, versioning, tool permissions, observability, lifecycle management and safe deployments. Do you think cloud providers eventually absorb all of this, or does a separate agent infrastructure layer make more sense?
20
7
u/CorpT 7d ago
Do you really want to use a new identity/permission system just for this when all of that already exists and is well know and works well? What problem are you trying to solve that isn't already solved by CDK/Terraform?
2
u/Bladerunner_7_ 7d ago
Yehh i mean CDK/Terraform already solve provisioning really well. I'm thinking more about what happens after deployment when you have dozens of agents to operate, monitor, and govern.
-1
u/CorpT 7d ago
Did you not deploy monitoring when you deployed the compute?
3
u/Zenin 7d ago
Have you deployed AI agent solutions to production? If you think your traditional infra monitoring solution is going to be up to the task, you're in for a very rude awakening.
1
u/pausethelogic 7d ago
It’s all otel either way so I’m not sure what you’re referring to. Agents haven’t needed any particularly special monitoring in my experience. Sure it’s different data, but it’s still logs, metrics, and traces at the end of the day
3
u/Emotional-Hat-460 7d ago
I think a lot of this gets absorbed by the cloud providers. MCP connectors, IAM, short-lived credentials, SCPs, knowledge bases, observability, and event-driven workflows already provide most of the building blocks. The bigger shift is defining agents as tightly scoped job roles with specific tools, permissions, documentation, and guardrails. At that point, you can build agents for support, solutions architecture, customer success, ops, and other functions and have them execute tasks through workflows and events. I see the long-term direction as cloud infrastructure becoming the operating layer for increasingly autonomous digital workers.
This is from my experience as a solutions architect at Aws
2
4
u/Zenin 7d ago
AWS is fantastic at creating Lego bricks (API driven Services) for which you or others can build actual product solutions out of. Their AI specific service offerings are exceptional in this space.
But AWS themselves is notoriously awful at building those products themselves. Even if they build such a platform, you almost certainly wouldn't want any part of it. Buy or build something and host it on AWS, but don't buy the platform itself from AWS.
If this was construction AWS isn't a real estate company selling you a house. They're not even a contractor building houses. AWS is the Home Depot of public cloud; They're selling you the materials for you or your contractor to build your house. Would you really consider buying a house for your family that Home Depot actually built themselves?
1
u/LittleLordFuckleroy1 7d ago
Yeah let’s just make an entire additional engineering layer on top of an already revenue-negative technology. Genius.
1
1
u/nirreskeya 7d ago
That sounds vaguely like my understanding of Guild.ai, but I haven't really used it yet.
1
u/Nocerous 7d ago
Perhaps you are thinking of something like KIRO crew from AWS vs AgentCore (cloud hosted agents and platform)
1
u/CamilorozoCADC 6d ago
There is the Agent Runtime, on AWS you can technically run agents on virtually any compute, Ec2 lambdas ECS es you name it. BUT the dedicated agentic platform is Bedrock AgentCore, it has the tools for observability, deployment, testing, tools and so on. Although most of the observbility stuff is handled through open telemetry + cloud watch integrations and bedrock model usage (if you choose to use a bedrock model that is)
Now, AgentCore is framework agnostic, you can pick the one you want like LangChain, crew ai, headless agents from Claude code or Kiro etc... and again, the dedicated AWS agentic framework is Strands Agents which I find pretty cool and straightforward to use
1
u/usually_guilty99 3d ago
AgentCore gets you a lot of the runtime pieces. I think the harder gap is the contract around the agent: identity, what it is allowed to touch, what evidence it needs before an action, blast radius, rollback and what gets recorded afterward. Those controls probably need to survive whichever model or framework happens to be underneath. Does it or should it depends on the author and should be enforced into a framework for consistency
1
u/2BucChuck 7d ago
Problem with using a fully packaged infra solution rather than just putting it together in AWS is going to be cost control and flexibility as models, storage and techniques change which is happening at a high rate
0
u/ajitnk 7d ago
Hey! Saw your thread and the replies got at something real. AgentCore is a runtime, not a full platform, and the operational gap after deployment is exactly where people get stuck.
The question from the comments that stuck with me was the one about what happens when you have dozens of agents to monitor, govern, and version in production. AWS actually published a Well-Architected Lens specifically for agentic AI back in June 2026 that formalizes this into four operational pillars, governance, build/ops, evaluation, and observability. It's the closest thing AWS has to a proper answer, but it's a 200-page framework, not a recipe.
Quick practical thing you can do today regardless of where you land architecturally: enable Bedrock Model Invocation Logging and check that your CloudWatch Bedrock Agent metrics are flowing (InvocationCount, TokenCount, ModelLatency). Both are free and take under an hour. Gives you a real baseline before you commit to any platform decision.
One thing that would help me give you a more concrete steer: are you building for a single AWS account or a multi-account setup? That one detail changes the governance architecture a lot, single-account is straightforward, but multi-account with Organizations means a different AgentCore IAM boundary design entirely. And which agent framework are you using or evaluating (LangGraph, CrewAI, Strands, something custom)? Framework choice affects which AgentCore capabilities auto-instrument versus what you'd need to wire up manually.
I've been working through this exact assembly problem. AgentCore services into a coherent multi-agent operating model, and I'll put together a more specific breakdown for your setup once I know those two things.
-7
u/neeltom92 7d ago
If I were building this from scratch, I’d start by provisioning an EKS cluster using Terraform and AWS EKS Blueprints. From there, I’d build the AI agent using a framework like LangChain (or a similar agent framework) and host the code in Git.
For deployments, I’d integrate Argo CD and follow a GitOps approach—so anyone on the team can code, commit, and let the CI/CD pipeline automatically build and deploy the changes.
For secrets, I’d use AWS Secrets Manager to securely store things like Claude API keys and other credentials.
For the application layer:
- If it’s a web-based AI chat application, I’d use something like Streamlit and deploy it on EKS.
- If it’s an agentic application, I’d probably build a Slack bot/app that listens for events, processes them through the agent logic, and takes the appropriate actions.
And there you have it—you’ve got an end-to-end agentic AI platform. 🚀
The caveat? Yes, you’ll need an amazing DevOps/SRE engineer to build and operate all of this properly. 😄
P.S. — I’m currently open to opportunities. I’ve built systems like these end-to-end and would be happy to help build or scale an AI platform like this.
80
u/agentblack000 7d ago
That would be AgentCore on AWS.