Questions tagged [azure-devtest-labs]

For questions about Microsoft Azure DevTest Labs, for provisioning self-service dev/test environments on Azure. DevTest Labs has tools for setting policies on the kinds and sizes of VMs that can be created, for customising them with additional installation scripts, and for controlling costs and user access to the resulting dev/test environments.

80 questions
0
votes
1 answer

What RBAC role or access needed to attach Shared image gallery to DevTest lab? Both shared Image Gallery & DevTest lab are in different subscriptions

What RBAC role or access needed to attach a Shared image gallery to DevTest lab? Both shared Image Gallery & DevTest lab are in different subscriptions. I am trying to deploy DevTest lab using the Arm template via terraform. While deploying it's…
0
votes
1 answer

Azure Devtest Lab : Managing PAT for artifact repository

I am using PAT(Personal access token) in key vault as a secret and Passing it in Devtest Lab ARM template to access azure DevOps Repos for enabling artifact repository , but I am bit curious to know that is the PAT will be associated with azure user…
Madhur Asati
  • 185
  • 3
  • 13
0
votes
1 answer

How to restrict public IP to all Azure DevTest Labs by policy

We currently have the built in policy to disallow public ips scoped at the management group level which works when creating regular VMs in our environment. This policy does not block the creation of VMs with public IPs in DevTest labs even though…
0
votes
1 answer

How to create dev/test environment to test outlook javascript add in on macOS(catalina/bigsur) using azure?

Need to test outlook add in on mac os.Is there a way to setup dev/test environment in microsoft azure using…
0
votes
1 answer

Use Azure Migrate to migrate machines into dev test lab

We currently have a VMWare Lab on site. We would like to use Azure Migrate to migrate the VMs and put them in a DevTest lab. Is there any way to do this short of taking images once they are in Azure and then re-create them in the lab?
0
votes
1 answer

How to trigger a specific Dev/Test Lab environment using ARM Template?

I am trying to automate the creation of Dev/Test Lab environments using ARM Templates. Currently my environments options are stored in GitHub and lets say I have a specific environment called "Env1" that deploys PaaS services. I wanted to use ARM…
0
votes
1 answer

DevTestLabs VirtualNetwork-Subnet: inconsistency between portal and .net sdk

I'm trying to set Use in virtual machine creation and Allow public IP creation to Yes programmatically. I found the right method, here's my code for that: var fragment = new VirtualNetworkFragment( subnetOverrides:…
Aranha
  • 2,903
  • 3
  • 14
  • 29
0
votes
1 answer

Configure a Virtual Network in Azure DevTest Labs - programmatically (c#)

I'm trying to create a brand new network with two address spaces (10.0.0.0/20 and 10.0.16.0/20) and, most importantly, set useInVmCreationPermission and usePublicIpAddressPermission to Allow. I have the lab already created and I'm able to create a…
Aranha
  • 2,903
  • 3
  • 14
  • 29
0
votes
1 answer

Azure - create multiple Virtual Machines with static addresses - conflicts

I'm working on a project in which we create labs (for students) in which users can create virtual machines and specify that they ought to have static ip addresses. The problem is that when a virtual machine is created on Azure, it alwayas has a…
Aranha
  • 2,903
  • 3
  • 14
  • 29
0
votes
1 answer

DevTest Lab reports cannot create public IP Address when using a private network

When I setup my DevTest Lab, I created a private virtual network (with private address subnet assigned to it) and then created a Gateway with a single public IP. The gateway works perfectly and we can use it to connect to VMs created within the…
another_one
  • 356
  • 4
  • 13
0
votes
2 answers

Creating a lab using Azure Lab Services with no Public IP

I am considering to use Azure Lab Services and I'm trying to find a way to create everything in it with no Public IPs but I can't find a way. I noticed I can make the VMs from each lab to use private IP using a peered Vnet with a selected address…
0
votes
3 answers

Azure Pipeline Key vault issue while creating DevTest Labs VM

I want to create an Azure DevTest labs VM via pipeline process . However, when I start to deploy, it fails on the step "Create Azure DevTest Lab VM" and it seems to be caused by my key vault is missing. But after check my key vault, my secret is…
0
votes
1 answer

Trying to get dev test lab VM username used in Artifacts Run Powershell script

We have a artifacts created "Clone a Git Repo" - Clones the PS1 script from git hub "Run Powershell" run the PS1 script. These artifact is linked to Formulae. On creating a new VM, the Formulae is applied to run which runs the PS1 script. Tried to…
Anvesh K
  • 42
  • 6
0
votes
1 answer

How to add base image to formula in devtest lab using ARM template?

I am trying to create a formula in DevTest lab using ARM. This formula needs base image. I am using customimageid property in as shown below in ARM template. "customImageId": "[concat('/customimages/', variables('imageName'))]" I can create a…
user6264
  • 175
  • 1
  • 7
  • 22
0
votes
1 answer

How can I get information on my template failing to start?

I'm using Azure Labs Services (for classrooms), and I can't start my Template VM. The "start VM" trigger will work, but the VM will fail to start and return to a "stopped" state without any error message in the Labs environment or the Azure Portal.…