Azure

How To Continuously Deploy Your .NET Core Azure WebJobs Members Public

New To Azure WebJobs? Learn how to get started and set up a build deploy pipeline in Azure DevOps.

Rahul Pulikkot Nath
Rahul Pulikkot Nath
Azure DevOps

Let Azure Manage The Username and Password Of Your SQL Connection String Members Public

Use Azure Managed Identities feature to connect to Azure SQL. One less sensitive information to manage.

Rahul Pulikkot Nath
Rahul Pulikkot Nath
Azure

Azure Managed Service Identity And Local Development Members Public

One of the common challenges when building cloud applications is managing credentials for authenticating to cloud services. The Managed Service Identity feature of Azure AD provides an automatically managed identity in Azure AD. This identity helps authenticate with cloud service that supports Azure AD authentication. In a previous post, we

Rahul Pulikkot Nath
Rahul Pulikkot Nath
Azure

DefaultAzureCredential: Unifying How We Get Azure AD Token Members Public

The DefaultAzureCredential is appropriate for most scenarios where the application is intended to ultimately be run in Azure. DefaultAzureCredential combines credentials that are commonly used to authenticate when deployed, with credentials that are used to authenticate in a development environment.

Rahul Pulikkot Nath
Rahul Pulikkot Nath
Azure

Generating PDF: .Net Core and Azure Web Application Members Public

Using NReco library to generate PDF files on Azure Web App running .Net Core.

Rahul Pulikkot Nath
Rahul Pulikkot Nath
Dotnet

How to Authenticate With Microsoft Graph API Using Managed Service Identity Members Public

In an earlier post, we saw how to enable Role-Based Access for .Net Core Web applications. We used hardcoded AD Group Id's in the application as below "AdGroups": [ { "GroupName": "Admin", "GroupId": "119f6fb5-a325-47f9-9889-ae6979e9e120" }, { "GroupName": "Employee"

Rahul Pulikkot Nath
Rahul Pulikkot Nath
Azure

Remote Debugging: Azure Virtual Machines With Visual Studio Members Public

It's not often that you want to debug into applications running on a Virtual Machine, but not to say that it is never required. Recently at one of my clients, I had to debug into an application running on an Azure Virtual machine. I wanted to debug an

Rahul Pulikkot Nath
Rahul Pulikkot Nath
Azure

Azure AD: Restrict Application Access To Users Belonging To A Group Members Public

For one of the web application I was working on, access was to be restricted based on user belonging to a particular Azure AD Group. The application as such did not have any Role Based Functionality. It feels an overhead to set up the Role Based Access when all we

Rahul Pulikkot Nath
Rahul Pulikkot Nath
Azure