Home | Features | Design | Prerequisites | Troubleshooting
This solution will deploy a fully operational Azure Virtual Desktop (AVD) stamp adhereing to the Zero Trust principles. Many of the common features used with AVD have been automated in this solution for your convenience.
Warning
Failure to complete the prerequisites will result in an unsuccessful deployment.
This option opens the deployment UI for the solution in the Azure Portal. Be sure to select the button for the correct cloud. If your desired cloud is not listed, please use the template spec option below.
This option creates a template spec in Azure to deploy the solution and is the preferred option for air-gapped clouds. Once you create the template spec, open it in the portal and click the "Deploy" button.
$Location = '<Azure Location>'
$ResourceGroupName = 'rg-ts-<Environment Abbreviation>-<Location Abbreviation>'
$TemplateSpecName = 'ts-avd-<Environment Abbreviation>-<Location Abbreviation>'
New-AzResourceGroup `
-Name $ResourceGroupName `
-Location $Location `
-Force
New-AzTemplateSpec `
-ResourceGroupName $ResourceGroupName `
-Name $TemplateSpecName `
-Version 1.0 `
-Location $Location `
-TemplateFile '.\src\bicep\add-ons\azure-virtual-desktop\solution.json' `
-UIFormDefinitionFile '.\src\bicep\add-ons\azure-virtual-desktop\uiDefinition.json' `
-Force