quiet-florist-19423
05/06/2025, 6:04 AMvar FunctionApp = new AzureNative.Web.WebApp(name, new()
{
Kind = "FunctionApp",
ResourceGroupName = resourceGroupName,
Location = location,
ServerFarmId = appServicePlanId,
SiteConfig = new SiteConfigArgs
{
AlwaysOn = true,
Http20Enabled = true,
AppSettings =
{
new NameValuePairArgs { Name = "FUNCTIONS_WORKER_RUNTIME", Value = "dotnet-isolated" },
new NameValuePairArgs { Name = "FUNCTIONS_EXTENSION_VERSION", Value = "~4" },
new NameValuePairArgs { Name = "AzureWebJobsStorage__accountName", Value = "esdevcommonstorage" },
new NameValuePairArgs { Name = "WEBSITE_LOAD_CERTIFICATES", Value = "*" },
new NameValuePairArgs { Name = "WEBSITE_RUN_FROM_PACKAGE", Value = "1" },
new NameValuePairArgs { Name = "WEBSITE_CONTENTOVERVNET", Value = "1" },
new NameValuePairArgs { Name = "APPINSIGHTS_INSTRUMENTATIONKEY", Value = appInsightInstrumentationKey },
},
},
PublicNetworkAccess = "Disabled",
ClientAffinityEnabled = false,
VirtualNetworkSubnetId = ingestionSubnet,
VnetRouteAllEnabled = true,
});var FunctionApp = new AzureNative.Web.WebApp(name, new()
{
Kind = "FunctionApp",
ResourceGroupName = resourceGroupName,
Location = location,
ServerFarmId = appServicePlanId,
SiteConfig = new SiteConfigArgs
{
AlwaysOn = true,
Http20Enabled = true,
AppSettings =
{
new NameValuePairArgs { Name = "FUNCTIONS_WORKER_RUNTIME", Value = "dotnet-isolated" },
new NameValuePairArgs { Name = "FUNCTIONS_EXTENSION_VERSION", Value = "~4" },
new NameValuePairArgs { Name = "AzureWebJobsStorage__accountName", Value = "storage" },
new NameValuePairArgs { Name = "WEBSITE_LOAD_CERTIFICATES", Value = "*" },
new NameValuePairArgs { Name = "WEBSITE_RUN_FROM_PACKAGE", Value = "1" },
new NameValuePairArgs { Name = "WEBSITE_CONTENTOVERVNET", Value = "1" },
new NameValuePairArgs { Name = "APPINSIGHTS_INSTRUMENTATIONKEY", Value = appInsightInstrumentationKey },
},
},
PublicNetworkAccess = "Disabled",
ClientAffinityEnabled = false,
VirtualNetworkSubnetId = ingestionSubnet,
VnetRouteAllEnabled = true,
});quick-noon-18541
05/06/2025, 8:26 AMquiet-florist-19423
05/06/2025, 9:19 AMquiet-florist-19423
05/06/2025, 9:19 AMquick-noon-18541
05/06/2025, 9:56 AMquiet-florist-19423
05/06/2025, 2:49 PMquick-noon-18541
05/06/2025, 2:55 PMquiet-florist-19423
05/06/2025, 4:59 PMquiet-florist-19423
05/06/2025, 5:05 PM