Os modelos de Início Rápido do Azure estão atualmente disponíveis em inglês
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
Este modelo do ARM (Azure Resource Manager) foi criado por um membro da comunidade, e não pela Microsoft. Cada modelo do ARM é licenciado para você de acordo com o contrato de licença de seu proprietário, e não da Microsoft. A Microsoft não é responsável por modelos do ARM fornecidos e licenciado por membros da comunidade e não avalia sua segurança, compatibilidade ou desempenho. Modelos do ARM da comunidade não têm suporte de nenhum programa ou serviço de suporte da Microsoft e são disponibilizados DA FORMA COMO ESTÃO, sem nenhum tipo de garantia.
Parâmetros
Nome do parâmetro | Descrição |
---|---|
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. |
Usar 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 deploymentInstale e configure o PowerShell do Azure
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/demos/vmss-win-iis-app-ssl/azuredeploy.json
Linha de comando
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 Comando de Plataforma Cruzada do 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