Les modèles de démarrage rapide Azure sont actuellement disponibles en anglais.
This template allows you to deploy two Windows VMSS, configure windows features like IIS/Web Role, .Net Framework 4.5, windows auth, application initialization, download application deployment packages, URL Rewrite & SSL configuration using DSC and Azure Key Vault
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 |
---|---|
appStorageType | Set this value for the storage account type |
frontEndVMSSName | Set this value for the frontend vmss name |
serviceVMSSName | Set this value for the backend or service vmss name |
appVMAdminUserName | Set this value for the admin user name to the vmss |
appVMAdminPassword | Set this value for the password for the admin user to the vmss |
appVMWindowsOSVersion | Set this value for the windows os version |
frontEndVMSize | Set this value for the frontend vmss size |
serviceVMSize | Set this value for the service or backend vmss size |
appPublicIPDnsName | Set this value for the dns name of the frontend public ip |
servicePublicIPDnsName | Set this value for the dns name of the backend public ip |
_artifactsLocation | Auto-generated container in staging storage account to receive post-build staging folder upload |
_artifactsLocationSasToken | Auto-generated token to access _artifactsLocation |
appDSCUpdateTagVersion | This value must be changed from a previous deployment to ensure the extension will run |
appWebPackage | Set this value for the signed uri to download the frontend deployment package |
appServicePackage | Set this value for the signed uri to download the service deployment package |
instanceCount | Number of VM instances in the vmss |
frontEndDSCVMSSUpdateTagVersion | This value must be changed from a previous deployment to ensure the extension will run |
serviceDSCVMSSUpdateTagVersion | This value must be changed from a previous deployment to ensure the extension will run |
vaultName | The Azure Key vault where SSL certificates are stored |
vaultResourceGroup | Resource Group of the key vault |
httpssecretUrlWithVersion | full Key Vault Id to the secret that stores the SSL cert |
httpssecretCaUrlWithVersion | full Key Vault Id to the secret that stores the CA cert |
certificateStore | name of the certificate key secret |
certificateDomain | name of the domain the certificate is created for |
location | Location for all resources. |
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/demos/vmss-win-iis-app-ssl/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/demos/vmss-win-iis-app-ssl/azuredeploy.json