I made a new .NET 8.0 Isolated Function App on by B1 App Service plan three days ago and I'm used to being able to select my Azure Subscription, then "Function App on Windows", and then select the resource from the dropdown, but I see nothing in there. I tried to deploy to the function app directly from Visual Studio, and it reports success, but it does not have any of my functions listed when I go to the resource, and the Activity Log is full of Sync Web Apps Functions Triggers failures with this JSON(I scrubbed IDs, and didn't include what looked like irrelevant earlier information from the JSON):
"status": {
"value": "Failed",
"localizedValue": "Failed"
},
"subStatus": {
"value": "BadRequest",
"localizedValue": "Bad Request (HTTP Status Code: 400)"
},
"submissionTimestamp": "2023-10-01T05:07:10Z",
"subscriptionId": "SUBSCRIPTIONID",
"tenantId": "TENANTID",
"properties": {
"statusCode": "BadRequest",
"serviceRequestId": null,
"statusMessage": "{\"Code\":\"BadRequest\",\"Message\":\"Encountered an error (ServiceUnavailable) from host runtime.\",\"Target\":null,\"Details\":[{\"Message\":\"Encountered an error (ServiceUnavailable) from host runtime.\"},{\"Code\":\"BadRequest\"},{\"ErrorEntity\":{\"Code\":\"BadRequest\",\"Message\":\"Encountered an error (ServiceUnavailable) from host runtime.\"}}],\"Innererror\":null}",
"eventCategory": "Administrative",
"entity": "/subscriptions/SUBSCRIPTIONID/resourceGroups/RESOURCEGROUP/providers/Microsoft.Web/sites/FUNCTIONAPPNAME/host/default",
"message": "Microsoft.Web/sites/host/sync/action",
"hierarchy": "TENANTID/SUBSCRIPTIONID"
},
"relatedEvents": []
I set up build/release pipelines for .NET 6.0 In-Process function apps running on more powerful App Service Plans all the time without issues. Is this a .NET 8.0 preview issue, or have I messed up some configuration? I feel like I should at least be able to see the function app in the release pipeline to set it up, even if I get an error on/after deployment.