Skip to content

Latest commit

 

History

History
41 lines (29 loc) · 2.65 KB

File metadata and controls

41 lines (29 loc) · 2.65 KB

Azure Virtual Desktop Solution

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.

Deployment Options

Warning

Failure to complete the prerequisites will result in an unsuccessful deployment.

Blue Buttons

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.

Deploy to Azure Deploy to Azure Gov

Template Spec

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