Azure Compute Image Gallery – Copy Compute Images across subscriptions/Tenants
Following powershell module can be used to copy Managed Images from one Gallery to another (across Subscriptions or Tenants). #Set variables #Set variables$targetSubID = “<subscription ID for the target>”$sourceTenantID = “<tenant ID where for the source image>”$sourceImageID = “<resource ID of the source image>” #Login to the tenant where the source image is publishedConnect-AzAccount -Tenant […]
DevOps – Trigger ADO Pipeline from Bitbucket
You can trigger a ADO pipeline when a PR is created in bitbucket:1- Create a webhook in bitbucket; set a pipeline trigger e.g. When a Pull Request is created. Specify a secret (optional)2- Create a ‘incoming webhook Service Connection’ in ADO. Mention same webhook name as created in #1. Optionally, specify the same secret as […]