natively support deny assignments #9114
-
Azure Blueprints and Azure managed apps use deny assignments to protect system-managed resources. But when are we going to get the power to use this deny assignment ourselves by a So in the future i will still have to depend on blueprints or deploymentStacks to protect my resources, while i might not need all that overhead, if i could just protect my bicep module file with a seperate |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You can set resource locks to protect resources, they are available at any scope that you choose and can be deployed. The popular option is:
Here is the deployment stacks info: https://www.youtube.com/watch?v=tPrpsKVEhSU&t=224s I believe it's close to public preview, however you can try to sign up for the private preview here: |
Beta Was this translation helpful? Give feedback.
You can set resource locks to protect resources, they are available at any scope that you choose and can be deployed.
The popular option is:
CanNotDelete
https://learn.microsoft.com/en-us/azure/templates/microsoft.authorization/locks?pivots=deployment-language-bicep
H…