I have a .NET project which requires administrator permissions to run. I have converted it to Azure Function App consisting of multiple functions and running it in Azure. It seems like it is not running as administrator because I am getting the error that:
The application must run as Administrator.
I am actually trying to get data from an API using a Http Request but which requires Admin permissions as shown here:
"identities": [
{
"type": "WebJobsAuthLevel",
"level": "Admin"
}
]
Is there a way to provide admin rights to Azure Function app?
Thanks.