User Profile
Athithya
Brass Contributor
Joined 5 years ago
User Widgets
Recent Discussions
Re: How to solve issue: Incorrect worker runtime specified for function app (AZFD0013)?
In future In-process model is going to deprecate anyhow. Better you can abide isolated model. Yes. configuration setting is correct but please consider the below points If you are using .NET framework application and/or .NET SDK like .net framework 4.8 or .net core 3.1, please convert your project to dot-net isolated model. You may need to change some nuget packages. For example In in-process model, your function code starts as [FunctionName("funcname")] In isolated model, - after migrated from in-process your function code will look like below and you need to make some changes in .csproj [Function("funcname")] Note: FUNCTIONS_WORKER_RUNTIME value change can affect your func app code running Please refer https://learn.microsoft.com/en-us/azure/azure-functions/migrate-dotnet-to-isolated-model?tabs=net8954Views0likes0CommentsRe: Site from Azure VM to web
1. Does your VM have public IP? 2. If yes, we need to open port 80 on NSG Inbound between your VM and internet like source - Any or (Service Tag -> internet), Destination =your VM public IP. 3. To test around, have source - any, destination - any and port - 80, protocol - any 4. Note having any , any in inbound is a security risk. Once testing done, please remove it open ports accordingly between source and destination 5. As MaR1a said, refer the https://docs.microsoft.com/en-us/azure/virtual-machines/windows/nsg-quickstart-portal1.3KViews0likes1CommentRe: Create a custom role (VM Reader) for a user using PowerShell in Azure!
TomWechsler Thanks for the valuable sharing. I've a small clarification as below. I understand that the example you explained covers "actions" under the permission. Can we achieve "nonActions", "dataActions", "nonDataActions" as well via powershell? I hope yes because I can see those objects when I read $role in powershell. Kindly share your thoughts.4.6KViews0likes1Comment
Recent Blog Articles
No content to show