The modern security operations center is often defined by a singular, frustrating bottleneck: the senior analyst. In most organizations, the ability to correlate data across thousands of disparate systems is a rare skill, locked behind years of experience. When a complex compliance audit or a critical vulnerability scan hits the desk, junior analysts often find themselves paralyzed by the sheer volume of noise, leaving the heavy lifting to a handful of senior experts who spend hours manually scrubbing logs and cross-referencing spreadsheets. This dependency creates a fragile operational loop where the speed of security is limited by the bandwidth of a few key individuals.
The Infrastructure of Asset Intelligence
Axonius operates an asset intelligence platform designed to solve this exact problem by integrating data from over 1,400 different systems into a single source of truth. The scale is immense, with millions of data points flowing in real-time. To break the senior analyst bottleneck, Axonius integrated AI agents powered by Amazon Bedrock AgentCore. The result was a 50 percent reduction in the manual burden associated with security, auditing, and compliance tasks. By shifting the workload from human manual labor to AI-driven correlation, the platform now allows junior analysts to perform complex analyses that previously required senior-level expertise.
To achieve this without compromising the strict security requirements of B2B SaaS, Axonius adopted a Silo model for its AI agent execution environment. This approach ensures that each customer is assigned a dedicated AgentCore runtime, providing physical and logical isolation at the infrastructure level. The deployment is fully automated using AWS CloudFormation and the AWS Cloud Development Kit (CDK). When a new customer joins the platform, the system triggers predefined infrastructure templates to automatically provision a dedicated runtime and a dedicated Amazon Virtual Private Cloud (VPC). This automation extends to the offboarding process, where resources are instantly decommissioned to prevent cost leakage.
The data workflow begins with reasoning powered by Claude models, which then transitions to knowledge extraction via Bedrock Knowledge Base. This Retrieval-Augmented Generation (RAG) service allows the AI to reference internal corporate data securely. Once the necessary knowledge is extracted, the agent triggers dedicated API calls assigned exclusively to that specific customer. To enforce this boundary, Axonius utilizes IAM resource-based policies. These policies ensure that only authorized principals—whether within the same account or via cross-account IDs—can invoke the agent. Any request not explicitly defined in the policy is rejected at the runtime entry point.
The Trade-off Between Isolation and Efficiency
While the Silo model provides the highest level of security, it is not the only way to architect a multi-tenant AI system. The real technical challenge for any ISV is balancing the tension between absolute data isolation and operational overhead. By analyzing the Axonius implementation, three distinct patterns emerge for managing AI agent isolation: Silo, Pool, and Bridge.
The Silo model, as used by Axonius, is the gold standard for high-compliance industries like finance or healthcare. Because each tenant has its own runtime and VPC, there is zero risk of resource contention or data leakage between customers. However, this comes at the cost of increased management complexity, as the number of runtimes scales linearly with the number of customers.
In contrast, the Pool model optimizes for efficiency. Instead of dedicated runtimes, it uses a single shared runtime that allocates a dedicated microVM for each individual session. Authentication is handled via OAuth 2.0 identity providers, such as Amazon Cognito, which issue JSON Web Tokens (JWT). The system uses tenant claims within the token, such as `custom:tenant_id`, to route data. A built-in JWT authenticator fetches public keys from a discovery URL to verify the token issuer, and the agent code then uses the claim to connect tool calls and data access to the correct tenant environment. This significantly reduces infrastructure costs while maintaining session-level isolation.
Then there is the Bridge model, which focuses on granular control at the tool-call level. This architecture uses a shared runtime but forces isolation through an AgentCore Gateway. Access control is managed by combining Cedar—AWS's policy language—with interceptors. Before a Cedar policy is evaluated, an interceptor runs to enrich the request context with necessary tenant metadata. The Cedar policy then decides whether a specific tool call is permitted. This allows for rapid deployment and high flexibility without the need for full physical isolation of the infrastructure.
Establishing the Trust Boundary
Beyond the choice of model, the security of a multi-tenant AI agent depends on where the trust boundary is drawn. Axonius ensures that while reasoning, knowledge retrieval, and guardrail processing happen within Amazon Bedrock, the raw data and identity information never leave the customer's VPC. All communication occurs over AWS private networking, bypassing the public internet entirely. This ensures that the customer retains ownership and control over their data, while Bedrock provides only the computational intelligence.
One of the most critical security decisions in this architecture is the elimination of long-term credentials. The AI agents do not possess permanent API keys or database passwords. Instead, they utilize a temporary credential borrowing mechanism. For the duration of a specific request lifecycle, the agent borrows the user's JWT to access required resources. Once the request is processed, the permission expires, and no authentication keys remain within the agent runtime. This prevents a catastrophic breach; even if a runtime were compromised, there are no permanent keys for an attacker to exfiltrate.
By scoping the user session, memory, tool calls, and network paths to a single tenant, the system prevents cross-tenant interference. This ensures that the conversational context of one user cannot leak into another customer's request and that tool calls cannot accidentally route to a different tenant's API endpoint. The result is a logical isolation that mirrors the security of a dedicated environment while leveraging the scalability of the cloud.
The shift toward AI agents in B2B SaaS is moving away from a focus on raw model performance and toward a focus on rigorous governance. For practitioners, the choice between Silo, Pool, and Bridge models depends entirely on the regulatory landscape of their target market. While the Pool model offers the fastest path to market, the Silo model remains the only viable option for enterprises where the cost of a single data leak outweighs the cost of managing a thousand separate runtimes.




