Hi, I'm looking into deploying Azure Functions on ...
# azure
s
Hi, I'm looking into deploying Azure Functions on Azure Container Apps. This is is a recent (May 2024) GA from MS. I was not able to find any documentation or examples to see if this is supported and/or nothing mentioned on the roadmap. Can anyone advise if this is being worked on and supported in any other way? More information: https://techcommunity.microsoft.com/t5/apps-on-azure-blog/general-availability-of-azure-functions-on-azure-container-apps/ba-p/4145577
f
The AzureNative provider is auto generated from microsofts API, so most likely the resources are already there. When I’m learning how to create a new resource, I create one manually in the portal, then in the resource I click the JSON view link in the top right on the resource overview. You’ll find the resource ID you need to import it into pulumi at the top.
b
We deploy an Azure Function to ACA. The deployment is the same as our other non azure function apps. The main difference is the base image used. For ex:
<http://mcr.microsoft.com/azure-functions/dotnet-isolated:4-dotnet-isolated8.0|mcr.microsoft.com/azure-functions/dotnet-isolated:4-dotnet-isolated8.0>
🙌 1