Azure hurtig start-skabelonerne er i øjeblikket tilgængelige på engelsk
This ARM Template sample code will deploy a **Remote Desktop Services 2019 Session Collection** lab with high availability. The goal is to deploy a fully redundant, highly available solution for Remote Desktop Services, using Windows Server 2019.
Denne ARM-skabelon (Azure Resource Manager) blev oprettet af et medlem af communityet og ikke af Microsoft. Hver ARM-skabelon er givet i licens til dig under en licensaftale med ejeren af skabelonen og ikke med Microsoft. Microsoft kan ikke gøres ansvarlig for de ARM-skabeloner, der leveres og gives i licens af communitymedlemmer, og vi undersøger dem ikke for sikkerhed, kompatibilitet eller ydeevne. ARM-skabeloner fra communytiet understøttes ikke af noget eller nogen Microsoft-supportprogram eller -tjeneste, og de stilles til rådighed, SOM DE ER, uden nogen former for garanti.
Parametre
Parameternavn | Beskrivelse |
---|---|
projectName | Define the project name or prefix for all objects. |
adminUser | What is the username for the admin on VMs and SQL Server? |
adminPasswd | What is the password for the admin on VMs and SQL Server? |
location | The location for resources on template. By default, the same as resource group location |
timeZoneID | TimeZone ID to be used on VMs. Get available timezones with powershell Get-TimeZone command. |
externalDnsZone | External public DNS domain zone. NOT AD domain. This the external domain your certs will point to. |
deployHA | This will trigger certificate request and HA deployment. If set to false, will not create HA deployment nor request certificates. |
dcCount | How many Domain Controllers would you like to deploy? |
rdcbCount | How many RD Connection Brokers would you like to deploy? |
rdwgCount | How many RD Web Access/Gateways would you like to deploy? |
rdshCount | How many RD Session Hosts would you like to deploy? |
lsfsCount | How many License/File Servers would you like to deploy? |
vmSize | What is the VM size for all VMs? |
vmSpot | Create Azure Spot VMs? |
vmStorageSkuType | What is the SKU for the storage to VM managed disks? |
adDomainName | What is the new forest/root Active Directory domain name? |
vNetPrefix | What is the prefix for the vnet and first subnet? |
vNetAddressSpace | What is the vnet address space? |
vNetSubnetAddress | What is the subnet address prefix? |
_artifactsLocation | Location of all scripts and DSC resources for RDS deployment. |
_artifactsLocationSasToken | SAS storage token to access _artifactsLocation. No need to change unless you copy or fork this template. |
Brug skabelonen
PowerShell
New-AzResourceGroup -Name <resource-group-name> -Location <resource-group-location> #use this command when you need to create a new resource group for your deploymentInstallér og konfigurer Azure PowerShell
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/demos/rds-deployment-full-ha/azuredeploy.json
Kommandolinje
az group create --name <resource-group-name> --location <resource-group-location> #use this command when you need to create a new resource group for your deploymentInstallér og konfigurer Azure-kommandolinjegrænsefladen til flere platforme
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/demos/rds-deployment-full-ha/azuredeploy.json