TestCases/SVT/Functions/TestData/Template_TC_Functions_Possible_Failed.json
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "resourceName": { "defaultValue": "azsktestfunctionnoncomplaint", "type": "String" }, "AppHostingPlan": { "defaultValue": "funcserviceplan", "type": "String" }, "config_web_name": { "defaultValue": "web", "type": "String" }, "storageAccount": { "defaultValue": "azskstorageforfunction", "type": "String" }, "hostNameBindings": { "defaultValue": "azsktestfunctionnoncomplaint.azurewebsites.net", "type": "String" } }, "variables": {}, "resources": [ { "type": "Microsoft.Storage/storageAccounts", "sku": { "name": "Standard_LRS", "tier": "Standard" }, "kind": "Storage", "name": "[parameters('storageAccount')]", "apiVersion": "2016-01-01", "location": "southcentralus", "tags": {}, "scale": null, "properties": {}, "dependsOn": [] }, { "type": "Microsoft.Web/serverfarms", "sku": { "name": "S1", "tier": "Standard", "size": "S1", "family": "S", "capacity": 1 }, "kind": "app", "name": "[parameters('appHostingPlan')]", "apiVersion": "2016-09-01", "location": "South Central US", "scale": null, "properties": { "name": "[parameters('appHostingPlan')]", "workerTierName": null, "adminSiteName": null, "hostingEnvironmentProfile": null, "perSiteScaling": false, "reserved": false, "targetWorkerCount": 0, "targetWorkerSizeId": 0 }, "dependsOn": [] }, { "type": "Microsoft.Web/sites", "kind": "functionapp", "name": "[parameters('resourceName')]", "apiVersion": "2016-08-01", "location": "South Central US", "scale": null, "properties": { "enabled": true, "hostNameSslStates": [ { "name": "[concat(parameters('resourceName'),'.azurewebsites.net')]", "sslState": "Disabled", "virtualIP": null, "thumbprint": null, "toUpdate": null, "hostType": "Standard" }, { "name": "[concat(parameters('resourceName'),'.scm.azurewebsites.net')]", "sslState": "Disabled", "virtualIP": null, "thumbprint": null, "toUpdate": null, "hostType": "Repository" } ], "serverFarmId": "[resourceId('Microsoft.Web/serverfarms', parameters('appHostingPlan'))]", "reserved": false, "siteConfig": null, "scmSiteAlsoStopped": false, "hostingEnvironmentProfile": null, "clientAffinityEnabled": false, "clientCertEnabled": false, "hostNamesDisabled": false, "containerSize": 1536, "dailyMemoryTimeQuota": 0, "cloningInfo": null }, "dependsOn": [ "[resourceId('Microsoft.Web/serverfarms', parameters('AppHostingPlan'))]" ] }, { "type": "Microsoft.Web/sites/config", "name": "[concat(parameters('resourceName'), '/', parameters('config_web_name'))]", "apiVersion": "2016-08-01", "location": "South Central US", "scale": null, "properties": { "numberOfWorkers": 1, "defaultDocuments": [ "Default.htm", "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx", "index.php", "hostingstart.html" ], "netFrameworkVersion": "v3.5", "phpVersion": "5.6", "pythonVersion": "", "nodeVersion": "", "linuxFxVersion": "", "requestTracingEnabled": false, "remoteDebuggingEnabled": true, "remoteDebuggingVersion": null, "httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "[parameters('resourceName')]", "publishingPassword": null, "appSettings": null, "metadata": null, "connectionStrings": null, "machineKey": null, "handlerMappings": null, "documentRoot": null, "scmType": "None", "use32BitWorkerProcess": true, "webSocketsEnabled": true, "alwaysOn": false, "javaVersion": null, "javaContainer": null, "javaContainerVersion": null, "appCommandLine": "", "managedPipelineMode": "Integrated", "virtualApplications": [ { "virtualPath": "/", "physicalPath": "site\\wwwroot", "preloadEnabled": true, "virtualDirectories": null } ], "winAuthAdminState": 0, "winAuthTenantState": 0, "customAppPoolIdentityAdminState": false, "customAppPoolIdentityTenantState": false, "runtimeADUser": null, "runtimeADUserPassword": null, "loadBalancing": "LeastRequests", "routingRules": [], "experiments": { "rampUpRules": [] }, "limits": null, "autoHealEnabled": false, "autoHealRules": { "triggers": null, "actions": null }, "tracingOptions": null, "vnetName": "", "siteAuthEnabled": false, "siteAuthSettings": { "enabled": null, "unauthenticatedClientAction": null, "tokenStoreEnabled": null, "allowedExternalRedirectUrls": null, "defaultProvider": null, "clientId": null, "clientSecret": null, "issuer": null, "allowedAudiences": null, "additionalLoginParams": null, "isAadAutoProvisioned": false, "googleClientId": null, "googleClientSecret": null, "googleOAuthScopes": null, "facebookAppId": null, "facebookAppSecret": null, "facebookOAuthScopes": null, "twitterConsumerKey": null, "twitterConsumerSecret": null, "microsoftAccountClientId": null, "microsoftAccountClientSecret": null, "microsoftAccountOAuthScopes": null }, "cors": { "allowedOrigins": [ "https://functions.azure.com", "https://functions-staging.azure.com", "https://functions-next.azure.com" ] }, "push": null, "apiDefinition": null, "autoSwapSlotName": null, "localMySqlEnabled": false, "ipSecurityRestrictions": null }, "dependsOn": [ "[resourceId('Microsoft.Web/sites', parameters('resourceName'))]" ] }, { "type": "Microsoft.Web/sites/hostNameBindings", "name": "[concat(parameters('resourceName'), '/', parameters('hostNameBindings'))]", "apiVersion": "2016-08-01", "location": "South Central US", "scale": null, "properties": { "siteName": "[parameters('resourceName')]", "domainId": null, "hostNameType": "Verified" }, "dependsOn": [ "[resourceId('Microsoft.Web/sites', parameters('resourceName'))]" ] } ] } |