System Grab Bag

View all TLDR pages from common (or from all pages)

az lock

Manage Azure locks. Part of azure-cli. More information: https://learn.microsoft.com/cli/azure/lock.
  • Create a read-only subscription level lock:
    az lock create --name {{lock_name}} --lock-type ReadOnly
  • Create a read-only resource group level lock:
    az lock create --name {{lock_name}} --resource-group {{group_name}} --lock-type ReadOnly
  • Delete a subscription level lock:
    az lock delete --name {{lock_name}}
  • Delete a resource group level lock:
    az lock delete --name {{lock_name}} --resource-group {{group_name}}
  • List out all locks on the subscription level:
    az lock list
  • Show a subscription level lock:
    az lock show -n {{lock_name}}

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.