Skip to main content

Build Tenant-Aware Policies on a Shared Gateway

Overview

APISIX does not provide a Tenant resource or a built-in tenant isolation model. This recipe combines APISIX capabilities to serve customers, teams, or business units through one shared gateway with different authentication, routing, and traffic policies.

These patterns separate request handling and policy behavior. They do not isolate Admin API access, configuration storage, or gateway runtime resources. Use separate APISIX deployments when stronger administrative or runtime isolation is required.

This recipe composes:

  1. Consumer Groups — apply shared plugin configurations to related consumers
  2. Host/path/authenticated-consumer routing — route requests to tenant-specific upstreams
  3. Per-consumer rate limiting — enforce different quotas within policy groups
  4. Proxy-rewrite — forward tenant context to backends via headers

When to Use

  • Multiple customers sharing a single API gateway
  • Internal platform serving different teams with separate policy and quota settings
  • SaaS application requiring tenant-aware routing and authentication
  • Need to forward tenant identity to backend services

Approach A: Consumer Groups for Shared Tenant Policies

Group consumers by tenant or service tier. Each group supplies shared plugin configuration, such as rate limits and transformations, to its consumers.

1. Create consumer groups for tenant policy sets

# Free tier — 100 requests/day per consumer
a6 consumer-group create -f - <<'EOF'
{
"id": "tenant-free",
"desc": "Free tier tenant",
"plugins": {
"limit-count": {
"count": 100,
"time_window": 86400,
"key_type": "var",
"key": "consumer_name",
"rejected_code": 429,
"rejected_msg": "Free tier quota exceeded"
}
}
}
EOF

# Pro tier — 10000 requests/day per consumer
a6 consumer-group create -f - <<'EOF'
{
"id": "tenant-pro",
"desc": "Pro tier tenant",
"plugins": {
"limit-count": {
"count": 10000,
"time_window": 86400,
"key_type": "var",
"key": "consumer_name",
"rejected_code": 429,
"rejected_msg": "Pro tier quota exceeded"
}
}
}
EOF

2. Create consumers assigned to groups

a6 consumer create -f - <<'EOF'
{
"username": "acme-corp",
"group_id": "tenant-pro",
"plugins": {
"key-auth": { "key": "acme-secret-key" }
}
}
EOF

a6 consumer create -f - <<'EOF'
{
"username": "startup-xyz",
"group_id": "tenant-free",
"plugins": {
"key-auth": { "key": "startup-xyz-key" }
}
}
EOF

3. Create a shared route with auth

a6 route create -f - <<'EOF'
{
"id": "api-v1",
"uri": "/api/v1/*",
"upstream": {
"type": "roundrobin",
"nodes": { "api-backend:8080": 1 }
},
"plugins": {
"key-auth": {}
}
}
EOF

Now acme-corp gets 10,000 req/day and startup-xyz gets 100 req/day, both through the same route.

Approach B: Host-Based Tenant Routing

Route each tenant to their own backend based on the Host header.

1. Create per-tenant upstreams

a6 upstream create -f - <<'EOF'
{
"id": "upstream-tenant-a",
"type": "roundrobin",
"nodes": { "tenant-a-backend:8080": 1 }
}
EOF

a6 upstream create -f - <<'EOF'
{
"id": "upstream-tenant-b",
"type": "roundrobin",
"nodes": { "tenant-b-backend:8080": 1 }
}
EOF

2. Create host-based routes

a6 route create -f - <<'EOF'
{
"id": "tenant-a-route",
"host": "tenant-a.example.com",
"uri": "/*",
"upstream_id": "upstream-tenant-a",
"plugins": { "key-auth": {} }
}
EOF

a6 route create -f - <<'EOF'
{
"id": "tenant-b-route",
"host": "tenant-b.example.com",
"uri": "/*",
"upstream_id": "upstream-tenant-b",
"plugins": { "key-auth": {} }
}
EOF

Approach C: Authenticated Tenant Routing

Use the authenticated consumer_name variable to route to different upstreams with traffic-split. Authentication plugins populate this APISIX variable from the matched Consumer before traffic-split runs, so a client cannot select another tenant's upstream by spoofing a request header.

a6 route create -f - <<'EOF'
{
"uri": "/api/*",
"plugins": {
"key-auth": {},
"traffic-split": {
"rules": [
{
"match": [{ "vars": [["consumer_name", "==", "acme-corp"]] }],
"weighted_upstreams": [
{ "upstream": { "type": "roundrobin", "nodes": { "tenant-a-backend:8080": 1 } }, "weight": 1 }
]
},
{
"match": [{ "vars": [["consumer_name", "==", "startup-xyz"]] }],
"weighted_upstreams": [
{ "upstream": { "type": "roundrobin", "nodes": { "tenant-b-backend:8080": 1 } }, "weight": 1 }
]
}
]
}
},
"upstream": {
"type": "roundrobin",
"nodes": { "default-backend:8080": 1 }
}
}
EOF

Forwarding Tenant Context to Backends

Use proxy-rewrite to inject tenant identity as headers so backends know which tenant the request belongs to.

a6 route update api-v1 -f - <<'EOF'
{
"plugins": {
"key-auth": {},
"proxy-rewrite": {
"headers": {
"set": {
"X-Consumer-Name": "$consumer_name",
"X-Consumer-Group": "$consumer_group_id"
}
}
}
}
}
EOF

Backend receives X-Consumer-Name: acme-corp and X-Consumer-Group: tenant-pro.

Declarative Tenant-Aware Configuration

Manage tenant groups, consumers, and routes declaratively with a6 config sync:

# apisix-tenants.yaml
consumer_groups:
- id: tenant-free
desc: "Free tier"
plugins:
limit-count:
count: 100
time_window: 86400
key_type: var
key: consumer_name
- id: tenant-pro
desc: "Pro tier"
plugins:
limit-count:
count: 10000
time_window: 86400
key_type: var
key: consumer_name

consumers:
- username: acme-corp
group_id: tenant-pro
- username: startup-xyz
group_id: tenant-free

routes:
- id: api-v1
uri: "/api/v1/*"
upstream:
type: roundrobin
nodes:
"api-backend:8080": 1
plugins:
key-auth: {}
proxy-rewrite:
headers:
set:
X-Consumer-Name: "$consumer_name"
X-Consumer-Group: "$consumer_group_id"
# Preview changes
a6 config diff -f apisix-tenants.yaml

# Apply
a6 config sync -f apisix-tenants.yaml

Create each tenant's key-auth data as a credential after the consumers exist. For example, save the following as acme-credential.yaml:

id: acme-key-auth
plugins:
key-auth:
key: acme-secret-key
a6 credential create --consumer acme-corp -f acme-credential.yaml

Save the free-tier credential as startup-credential.yaml:

id: startup-key-auth
plugins:
key-auth:
key: startup-xyz-key
a6 credential create --consumer startup-xyz -f startup-credential.yaml

Gotchas

  • Consumer Groups are not isolation boundaries — they reuse plugin configurations across consumers. All groups still share the same APISIX administrative surface, configuration storage, and gateway runtime.
  • Credentials are separate resourcesa6 config sync and a6 config dump do not manage Consumer Credential subresources. Store credential files securely and apply or restore them separately with a6 credential commands.
  • Consumer group plugins merge — plugins set on the consumer group are merged with plugins on the individual consumer. The consumer's plugin config takes precedence if both define the same plugin.
  • group_id is a string — must match an existing consumer group ID exactly.
  • Rate limit key — use key_type: "var" with key: "consumer_name" to enforce per-consumer limits within a group. Without this, the limit applies globally across all consumers in the group.
  • Tenant routing identity — match consumer_name or consumer_group_id after authentication. Do not route on a client-supplied tenant header because an authenticated consumer could spoof another tenant's value.
  • Variable names in proxy-rewrite$consumer_name and $consumer_group_id are APISIX built-in variables, available only after authentication runs. Ensure the auth plugin (key-auth, jwt-auth, etc.) has higher priority than proxy-rewrite.

Verification

# List consumer groups
a6 consumer-group list

# Verify consumer assignment
a6 consumer get acme-corp --output json | grep group_id

# Test rate limiting for free tier
for i in $(seq 1 101); do
curl -s -o /dev/null -w "%{http_code}\n" \
-H "apikey: startup-xyz-key" http://localhost:9080/api/v1/hello
done
# Request 101 should return 429

# Verify tenant headers reach backend
curl -H "apikey: acme-secret-key" http://localhost:9080/api/v1/headers
# Response should show X-Consumer-Name and X-Consumer-Group headers

This page is generated from a6-recipe-multi-tenant/SKILL.md in the api7/a6 repository. Browse all skills on the AI Agent Skills page.