Enterprise AI Security Architecture — Part I | AetherStaff
AAetherStaff
Enterprise Agent Engineering · Security Reference
Chapter 05A · Security Architecture · Foundations

Enterprise AI Security Architecture: trust, identity, and control

Part I establishes the security foundation for production enterprise AI: protected assets, trust boundaries, identity chains, delegated authority, and Zero Trust controls.

Security architecture begins by identifying what must be protected, where trust changes, who or what is acting, and which enterprise effects are possible. The objective is not to make the model “safe” in isolation. It is to make the entire system resilient to model error, adversarial input, identity abuse, data leakage, and unauthorized action.

5A.1 Security principles

ZERO TRUST
Verify every action

Authenticate every principal, evaluate every capability request, and assume that context may contain untrusted instructions.

LEAST PRIVILEGE
Minimize agency

Give each agent only the tools, data, and resource scope required for one task.

SEPARATION
Keep control outside the model

Identity, policy, credentials, validation, approval, and audit must remain deterministic.

Enterprise AI security combines established application security with controls for probabilistic behavior, prompt-based manipulation, tool selection, model routing, context construction, and agent autonomy. A secure design assumes the model can be wrong, persuaded, confused, or exposed to malicious content.

5A.2 Security reference architecture

Defense-in-depth security architectureMultiple independent control points
Users & Workloads
Applications
Events
External Content
Authentication
WAF / Rate Limits
Content Inspection
Tenant Routing
Context Isolation
Model Policy
Tool Allowlist
Output Validation
Policy Decision
Scoped Credentials
Human Approval
Post-condition Check
Audit · Security telemetry · Incident response · Credential revocation · Rollback

No individual control is sufficient. Content filtering cannot replace authorization. Strong identity cannot prevent unsafe tool parameters. A policy engine cannot detect a compromised connector. The architecture therefore uses independent layers so that one failure does not automatically become a business action.

5A.3 Protected assets

AssetSecurity concernExamples
Enterprise dataConfidentiality, integrity, residencyCustomer, employee, financial, operational, legal records
Identity and authorityImpersonation, privilege escalation, attributionUser claims, agent identities, approvals, delegated scope
Business capabilitiesUnauthorized or unsafe side effectsPayments, account changes, production operations, communications
Models and promptsManipulation, extraction, poisoning, misuseSystem instructions, routing policy, safety configuration
Knowledge and memoryCross-tenant leakage, staleness, injectionIndexes, embeddings, summaries, session memory
Evidence and logsTampering, over-collection, privacyTraces, approvals, tool outputs, evaluation records

5A.4 Trust boundaries

A trust boundary exists whenever identity, ownership, data classification, administrative control, or network policy changes. Typical boundaries include user device to enterprise gateway, enterprise network to model provider, orchestrator to connector, connector to target system, and one tenant or business domain to another.

BoundaryRequired controls
User to AI gatewayStrong authentication, session integrity, rate limits, tenant binding
Gateway to modelApproved endpoint, encryption, data classification, region policy
Knowledge source to contextACL preservation, provenance, injection scan, freshness
Agent to capabilityTool allowlist, policy decision, schema validation
Connector to target systemScoped workload identity, network policy, audit, verification
Tenant to tenantData, memory, cache, logs, quotas, and identity isolation

5A.5 Identity and access architecture

Enterprise AI introduces a chain of actors: initiator, application, agent, orchestrator, connector, and target workload. A secure architecture preserves each identity rather than collapsing the chain into a shared API key.

Illustrative security context
{
  "initiator": {"subject":"user_19482","tenant":"enterprise-eu","mfa":"phishing-resistant"},
  "agent": {"id":"finance-review-agent","version":"3.2","owner":"Finance Operations"},
  "delegation": {"mode":"on_behalf_of","actions":["invoice.read","payment.prepare"],"expires_in":300},
  "target": {"system":"erp-core","resource":"invoice:INV-8821"},
  "policy": {"risk_tier":"high","approval_required":true}
}

Agent identities require owners, sponsors, lifecycle state, approved tools, model policy, environment scope, and access reviews. Short-lived credentials should be issued at execution time. Secrets should never appear in prompts, model-visible configuration, agent memory, or tool descriptions.

5A.6 Zero Trust for AI systems

  • Assume all retrieved content can contain malicious instructions.
  • Authenticate users, workloads, agents, and connectors independently.
  • Authorize every business capability request, not only the initial session.
  • Use private connectivity or controlled egress for protected workloads.
  • Continuously evaluate device, tenant, role, agent, risk, and resource context.
  • Fail closed when identity, policy, approval, or target state cannot be verified.

Security boundary: the model may recommend a capability, but it must not mint its own authority.

Authorization remains an external deterministic decision based on trusted claims and current policy.

5A.7 Security foundation checklist

Protected assets and data classifications are documented.
Trust boundaries are mapped across users, models, tools, and systems.
Every agent has an owner, sponsor, version, and lifecycle state.
Human, agent, orchestrator, and connector identities are distinguishable.
Shared long-lived API credentials are prohibited for production actions.
Model endpoints are approved by task, region, and data class.
Tenant identity is bound at ingress and preserved across every service.
Protected actions fail closed when policy services are unavailable.

5A.8 Summary

Chapter 5A establishes the security foundation: protected assets, trust boundaries, identity, delegation, and Zero Trust. These controls define who or what is acting and prevent AI convenience from erasing enterprise authority.

Core conclusion: secure enterprise AI begins with explicit identity and trust boundaries, not with prompt filtering.