Created
August 28, 2024 09:49
-
-
Save csiebler/8956bce4dff8537f56c2d2b29a51207c to your computer and use it in GitHub Desktop.
Azure Policy to disallow provisioning of "Provisioned-Mangaged" in Azure OpenAI (AOAI)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
policyRule: { | |
if: { | |
field: 'Microsoft.CognitiveServices/accounts/deployments/sku.name' | |
equals: 'ProvisionedManaged' | |
} | |
then: { | |
effect: 'deny' | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment