Las plantillas de Inicio rápido de Azure están disponibles actualmente en inglés.
This template allows you to deploy a trusted launch capable Windows virtual machine using a few different options for the Windows version, using the latest patched version. If you enable Secureboot and vTPM, the Guest Attestation extension will be installed on your VM. This extension will perform remote [attestation](https://docs.microsoft.com/en-us/windows/security/information-protection/tpm/tpm-fundamentals#measured-boot-with-support-for-attestation) by the cloud. By default, this will deploy an Standard_D2_v3 size virtual machine in the resource group location and return the FQDN of the virtual machine.
Esta plantilla de Azure Resource Manager (ARM) la creó un miembro de la comunidad, no Microsoft. Su propietario (no Microsoft) le permite usar las plantillas de ARM con arreglo a un contrato de licencia. Microsoft no se responsabiliza de ninguna plantilla de ARM que le proporcionen los miembros de la comunidad (o cuya licencia le otorguen) en cuanto a su seguridad, compatibilidad ni rendimiento. Las plantillas de ARM de la comunidad no reciben ningún tipo de soporte en ningún servicio ni programa de soporte de Microsoft. Dichas plantillas se proporcionan TAL CUAL, sin garantía de ningún tipo.
Parámetros
Nombre del parámetro | Descripción |
---|---|
vmName | Name of the virtual machine. |
sku | The OS SKU for the virtual machine. This will pick a fully patched image of the given OS SKU. |
vmSize | Size of the virtual machine. |
adminUsername | Username for the virtual machine. |
adminPassword | Password for the virtual machine. |
secureBoot | Secure Boot setting of the virtual machine. |
vTPM | vTPM setting of the virtual machine. |
location | Location for all resources. |
dnsLabelPrefix | Unique DNS Name for the Public IP used to access the virtual machine. |
publicIpName | Name for the Public IP used to access the virtual machine. |
publicIPAllocationMethod | Allocation method for the Public IP used to access the virtual machine. |
publicIpSku | SKU for the Public IP used to access the virtual machine. |
nicName | Name of the network interface |
virtualNetworkName | Name of the virtual network |
networkSecurityGroupName | Name of the network security group |
maaEndpoint | MAA Endpoint to attest to. |
Uso de la plantilla
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 deploymentInstalar y configurar PowerShell de Azure
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.compute/vm-trustedlaunch-windows/azuredeploy.json
Línea de comandos
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 deploymentInstalación y configuración de la interfaz de línea de comandos multiplataforma de Azure
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.compute/vm-trustedlaunch-windows/azuredeploy.json