az vm extension
Manage extensions on VMs.
Extensions are small applications that provide post-deployment configuration and automation tasks on Azure virtual machines. For example, if a virtual machine requires software installation, anti-virus protection, or Docker configuration, a VM extension can be used to complete these tasks. Extensions can be bundled with a new virtual machine deployment or run against any existing system.
Commands
Name | Description | Type | Status |
---|---|---|---|
az vm extension delete |
Delete operation to delete the extension. |
Core | GA |
az vm extension image |
Find the available VM extensions for a subscription and region. |
Core | GA |
az vm extension image list |
List the information on available extensions. |
Core | GA |
az vm extension image list-names |
List the names of available extensions. |
Core | GA |
az vm extension image list-versions |
List the versions for available extensions. |
Core | GA |
az vm extension image show |
Display information for an extension. |
Core | GA |
az vm extension list |
List the extensions attached to a VM. |
Core | GA |
az vm extension set |
Set extensions for a VM. |
Core | GA |
az vm extension show |
Display information about extensions attached to a VM. |
Core | GA |
az vm extension wait |
Place the CLI in a waiting state until a condition of a virtual machine extension is met. |
Core | GA |
az vm extension delete
Delete operation to delete the extension.
az vm extension delete [--ids]
[--name]
[--no-wait {0, 1, f, false, n, no, t, true, y, yes}]
[--resource-group]
[--subscription]
[--vm-name]
Examples
Use a VM name and extension to delete an extension from a VM.
az vm extension delete -g MyResourceGroup --vm-name MyVm -n MyExtensionName
Delete extensions with IDs containing the string "MyExtension" from a VM.
az vm extension delete --ids $(az resource list --query "[?contains(name, 'MyExtension')].id" -o tsv)
Optional Parameters
One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of 'Resource Id' arguments. You should provide either --ids or other 'Resource Id' arguments.
The name of the virtual machine extension.
Do not wait for the long-running operation to finish.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
The name of the Virtual Machine. You can configure the default using az configure --defaults vm=<name>
.
Global Parameters
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.
az vm extension list
List the extensions attached to a VM.
az vm extension list [--ids]
[--resource-group]
[--subscription]
[--vm-name]
Examples
List attached extensions to a named VM.
az vm extension list -g MyResourceGroup --vm-name MyVm
Optional Parameters
One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of 'Resource Id' arguments. You should provide either --ids or other 'Resource Id' arguments.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
The name of the Virtual Machine. You can configure the default using az configure --defaults vm=<name>
.
Global Parameters
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.
az vm extension set
Set extensions for a VM.
Get extension details from az vm extension image list
.
az vm extension set --name
--publisher
[--enable-auto-upgrade {false, true}]
[--extension-instance-name]
[--force-update]
[--ids]
[--no-auto-upgrade {false, true}]
[--no-auto-upgrade-minor-version {false, true}]
[--no-wait]
[--protected-settings]
[--resource-group]
[--settings]
[--subscription]
[--version]
[--vm-name]
Examples
Add a user account to a Linux VM.
az vm extension set -n VMAccessForLinux --publisher Microsoft.OSTCExtensions --version 1.4 \
--vm-name MyVm --resource-group MyResourceGroup \
--protected-settings '{"username":"user1", "ssh_key":"ssh_rsa ..."}'
Add a customScript extension to VM(s) specified by --ids.
az vm extension set -n customScript --publisher Microsoft.Azure.Extensions --ids {vm_id}
Add an extension and enable automatic upgrade by the platform if there is a newer version of the extension available.
az vm extension set -n extName --publisher publisher --vm-name MyVM -g MyResourceGroup \
--enable-auto-upgrade true
Required Parameters
Name of the extension.
The name of the extension publisher.
Optional Parameters
Indicate the extension should be automatically upgraded by the platform if there is a newer version of the extension available.
Name of extension instance, which can be customized. Default: name of the extension.
Force to update even if the extension configuration has not changed.
One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of 'Resource Id' arguments. You should provide either --ids or other 'Resource Id' arguments.
Option '--no-auto-upgrade' has been deprecated and will be removed in a future release. Use '--no-auto-upgrade-minor-version' instead.
If set, the extension service will not automatically pick or upgrade to the latest minor version, even if the extension is redeployed.
If set, the extension service will not automatically pick or upgrade to the latest minor version, even if the extension is redeployed.
Do not wait for the long-running operation to finish.
Protected settings in JSON format for sensitive information like credentials. A JSON file path is also accepted.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Extension settings in JSON format. A JSON file path is also accepted.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
The version of the extension. To pin extension version to this value, please specify --no-auto-upgrade-minor-version.
The name of the Virtual Machine. You can configure the default using az configure --defaults vm=<name>
.
Global Parameters
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.
az vm extension show
Display information about extensions attached to a VM.
az vm extension show [--expand]
[--ids]
[--instance-view]
[--name]
[--resource-group]
[--subscription]
[--vm-name]
Examples
Use VM name and extension name to show the extensions attached to a VM.
az vm extension show -g MyResourceGroup --vm-name MyVm -n extension_name
Optional Parameters
Argument 'expand' has been deprecated and will be removed in version '3.0.0'.
The expand expression to apply on the operation.
One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of 'Resource Id' arguments. You should provide either --ids or other 'Resource Id' arguments.
The instance view of a virtual machine extension.
Name of the extension.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
The name of the Virtual Machine. You can configure the default using az configure --defaults vm=<name>
.
Global Parameters
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.
az vm extension wait
Place the CLI in a waiting state until a condition of a virtual machine extension is met.
az vm extension wait [--created]
[--custom]
[--deleted]
[--exists]
[--expand]
[--ids]
[--interval]
[--name]
[--resource-group]
[--subscription]
[--timeout]
[--updated]
[--vm-name]
Examples
Place the CLI in a waiting state until a condition of a virtual machine extension is met. (autogenerated)
az vm extension wait --created --name MyExtension --resource-group MyResourceGroup --vm-name MyVm
Place the CLI in a waiting state until a condition of a virtual machine extension is met. (autogenerated)
az vm extension wait --exists --name MyExtension --resource-group MyResourceGroup --vm-name MyVm
Place the CLI in a waiting state until a condition of a virtual machine extension is met. (autogenerated)
az vm extension wait --ids @- --name MyExtension --subscription MySubscription --updated --vm-name MyVm
Optional Parameters
Wait until created with 'provisioningState' at 'Succeeded'.
Wait until the condition satisfies a custom JMESPath query. E.g. provisioningState!='InProgress', instanceView.statuses[?code=='PowerState/running'].
Wait until deleted.
Wait until the resource exists.
Argument 'expand' has been deprecated and will be removed in version '3.0.0'.
The expand expression to apply on the operation.
One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of 'Resource Id' arguments. You should provide either --ids or other 'Resource Id' arguments.
Polling interval in seconds.
Name of the extension.
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Maximum wait in seconds.
Wait until updated with provisioningState at 'Succeeded'.
The name of the Virtual Machine. You can configure the default using az configure --defaults vm=<name>
.
Global Parameters
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.