Les modèles de démarrage rapide Azure sont actuellement disponibles en anglais.
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.
Ce modèle ARM (Azure Resource Manager) a été créé par un membre de la communauté et non par Microsoft. Chaque modèle ARM vous est concédé sous licence sous un contrat de licence par son propriétaire, et non par Microsoft. Microsoft ne peut pas être tenu responsable des modèles ARM fournis et concédés sous licence par les membres de la communauté, ni ne vérifie leur sécurité, leur compatibilité ou leurs performances. Les modèles ARM de la communauté ne sont pris en charge par aucun programme ou service de support Microsoft. Ils sont rendus disponibles EN L'ÉTAT sans garantie d'aucune sorte.
Paramètres
Nom du paramètre | Description |
---|---|
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. |
Utiliser le modèle
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 deploymentInstaller et configurer Azure PowerShell
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.compute/vm-trustedlaunch-linux/azuredeploy.json
Ligne de commande
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 deploymentInstaller et configurer l'interface de ligne de commande multiplateforme 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