Os modelos de Início Rápido do Azure estão atualmente disponíveis em inglês
This template allows you to deploy a trusted launch capable Linux virtual machine using a few different options for the Linux 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.
Este modelo de Gestor de Recursos do Azure (Azure Resource Manager, ARM) foi criado por um membro da comunidade e não pela Microsoft. Cada modelo de ARM está licenciado para si ao abrigo de um contrato de licença pelo respetivo proprietário e não pela Microsoft. A Microsoft não é responsável por modelos de ARM fornecidos e licenciados por membros da comunidade e não os analisa quanto a a segurança, compatibilidade ou desempenho. Os modelos de ARM da comunidade não são suportados ao abrigo de nenhum programa de suporte ou serviço da Microsoft e são disponibilizados TAL COMO ESTÃO sem qualquer tipo de garantia.
Parâmetros
Nome do Parâmetro | Descrição |
---|---|
vmName | The name of you virtual machine. |
os | The OS for the virtual machine. This will pick the latest fully patched image of the given OS. |
vmSize | The size of the virtual machine |
adminUsername | Username for the virtual machine. |
authenticationType | Type of authentication to use on the virtual machine. SSH Public key is recommended. |
adminPasswordOrKey | SSH Public Key or password for the virtual machine. SSH Public key is recommended. |
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. |
Utilizar o modelo
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 e configurar o PowerShell para Azure
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.compute/vm-trustedlaunch-linux/azuredeploy.json
Linha 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 deploymentInstalar e Configurar a Interface de Linha de Comandos para Várias Plataformas do 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-linux/azuredeploy.json