Skip to content

Instantly share code, notes, and snippets.

@csiebler
Created August 28, 2024 09:49
Show Gist options
  • Save csiebler/8956bce4dff8537f56c2d2b29a51207c to your computer and use it in GitHub Desktop.
Save csiebler/8956bce4dff8537f56c2d2b29a51207c to your computer and use it in GitHub Desktop.
Azure Policy to disallow provisioning of "Provisioned-Mangaged" in Azure OpenAI (AOAI)
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