Os modelos de Início Rápido do Azure estão atualmente disponíveis em inglês
This template creates an Application Gateway with WAF configured along with a firewall policy
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 |
---|---|
applicationGatewayName | Application gateway name |
location | Application gateway location |
tier | Application gateway tier |
sku | Application gateway sku |
http2Enabled | Enable HTTP/2 support |
capacity | Capacity (instance count) of application gateway |
autoScaleMaxCapacity | Autoscale capacity (instance count) of application gateway |
publicIpAddressName | Public ip address name |
vNetSubscriptionId | Virutal network subscription id |
existingVnetResourceGroup | Virutal network resource group |
existingVnetName | Virutal network name |
existingSubnetName | Application gateway subnet name |
sslCertificates | Array containing ssl certificates |
trustedRootCertificates | Array containing trusted root certificates |
httpListeners | Array containing http listeners |
backendAddressPools | Array containing backend address pools |
backendHttpSettings | Array containing backend http settings |
rules | Array containing request routing rules |
redirectConfigurations | Array containing redirect configurations |
frontEndPorts | Array containing front end ports |
customProbes | Array containing custom probes |
managedIdentityResourceId | Resource id of an existing user assigned managed identity to associate with the application gateway |
enableWebApplicationFirewall | Enable web application firewall |
firewallPolicyName | Name of the firewall policy. Only required if enableWebApplicationFirewall is set to true |
firewallPolicySettings | Array containing the firewall policy settings. Only required if enableWebApplicationFirewall is set to true |
firewallPolicyCustomRules | Array containing the firewall policy custom rules. Only required if enableWebApplicationFirewall is set to true |
firewallPolicyManagedRuleSets | Array containing the firewall policy managed rule sets. Only required if enableWebApplicationFirewall is set to true |
firewallPolicyManagedRuleExclusions | Array containing the firewall policy managed rule exclusions. Only required if enableWebApplicationFirewall is set to true |
enableDeleteLock | Enable delete lock |
enableDiagnostics | Enable diagnostic logs |
diagnosticStorageAccountId | Storage account resource id. Only required if enableDiagnostics is set to true |
logAnalyticsWorkspaceId | Log analytics workspace resource id. Only required if enableDiagnostics is set to true |
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/quickstarts/microsoft.network/application-gateway-waf-firewall-policy/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/quickstarts/microsoft.network/application-gateway-waf-firewall-policy/azuredeploy.json