HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

az image — Manage custom Virtual Machine Images in Azure. Part of `azure-cli` (also known as `az`). More inform

Submitted by: @import:tldr-pages··
0
Viewed 0 times
virtualcommandimagesaz imageclimanagecustommachine

Problem

How to use the az image command: Manage custom Virtual Machine Images in Azure. Part of azure-cli (also known as az). More information: <https://learn.microsoft.com/cli/azure/image>.

Solution

az image — Manage custom Virtual Machine Images in Azure. Part of azure-cli (also known as az). More information: <https://learn.microsoft.com/cli/azure/image>.

List the custom images under a resource group:
az image list {{[-g|--resource-group]}} {{resource_group}}


Create a custom image from managed disks or snapshots:
az image create {{[-g|--resource-group]}} {{resource_group}} {{[-n|--name]}} {{name}} --os-type {{windows|linux}} --source {{os_disk_source}}


Delete a custom image:
az image delete {{[-n|--name]}} {{name}} {{[-g|--resource-group]}} {{resource_group}}


Show details of a custom image:
az image show {{[-n|--name]}} {{name}} {{[-g|--resource-group]}} {{resource_group}}


Update custom images:
az image update {{[-n|--name]}} {{name}} {{[-g|--resource-group]}} {{resource_group}} --set {{property=value}}

Code Snippets

List the custom images under a resource group

az image list {{[-g|--resource-group]}} {{resource_group}}

Create a custom image from managed disks or snapshots

az image create {{[-g|--resource-group]}} {{resource_group}} {{[-n|--name]}} {{name}} --os-type {{windows|linux}} --source {{os_disk_source}}

Delete a custom image

az image delete {{[-n|--name]}} {{name}} {{[-g|--resource-group]}} {{resource_group}}

Show details of a custom image

az image show {{[-n|--name]}} {{name}} {{[-g|--resource-group]}} {{resource_group}}

Update custom images

az image update {{[-n|--name]}} {{name}} {{[-g|--resource-group]}} {{resource_group}} --set {{property=value}}

Context

tldr-pages: common/az image

Revisions (0)

No revisions yet.