Hi little ,
Thank You for reaching out to Microsoft Q&A forum.
Once Image is created, it is immutable which means you cannot modify the actual content of an image. However you can update certain properties of image version. Certain properties of image version you can modify are:Image Version;
- Regional replica count
- Target regions
- Exclude from latest
- End of life date
However, these updates/modifications cannot change actual content of the image; they only modify metadata or replication settings.
One of the feature of Azure Compute Gallery is Global replication which means replicating image across multiple target regions.
For an existing image, to replicate your image across multiple target regions, use a same source image and add a parameter called "--add publishingProfile.targetRegions name=<region>" for below Azure CLI command.
az sig image-version update \
--resource-group <your resource Group> \
--gallery-name <name of the gallery> \
--gallery-image-definition <ImageDefinition> \
--gallery-image-version <image version> \
--add publishingProfile.targetRegions name=<region>
Note: Use the flag -expand ReplicationStatus to check if the replication process to all the specified target regions has finished.
Please follow below documentation for more detailed information;
If the information is helpful, please click on "Accept the Answer" & "Upvote"
If you have any queries, please let us know, we will help you.