docs(ms-ai-architect): KB-refresh LOW 26/52 — security-hardening-ai-gateway: llm-content-safety syntaks (text-blocklist-ids→blocklists, shield-prompt, element-rekkefølge)

This commit is contained in:
Kjell Tore Guttormsen 2026-06-24 12:15:37 +02:00
commit 451f1e6a2e

View file

@ -1,6 +1,6 @@
# Security Hardening for AI Gateways in APIM
**Last updated:** 2026-02
**Last updated:** 2026-06-24
**Status:** GA
**Category:** API Management & AI Gateway
@ -103,17 +103,17 @@ Prompt injection er den mest kritiske AI-spesifikke trusselen (OWASP LLM Top 10
<inbound>
<base />
<!-- Azure AI Content Safety for prompt moderation -->
<llm-content-safety backend-id="content-safety-backend">
<text-blocklist-ids>
<id>prompt-injection-patterns</id>
<id>offensive-content-no</id>
</text-blocklist-ids>
<llm-content-safety backend-id="content-safety-backend" shield-prompt="true">
<categories>
<category name="Hate" threshold="2" />
<category name="Violence" threshold="2" />
<category name="SelfHarm" threshold="2" />
<category name="Sexual" threshold="2" />
</categories>
<blocklists>
<id>prompt-injection-patterns</id>
<id>offensive-content-no</id>
</blocklists>
</llm-content-safety>
</inbound>
</policies>