惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

小众软件
小众软件
WordPress大学
WordPress大学
IT之家
IT之家
G
Google Developers Blog
Vercel News
Vercel News
阮一峰的网络日志
阮一峰的网络日志
博客园 - 三生石上(FineUI控件)
Engineering at Meta
Engineering at Meta
Martin Fowler
Martin Fowler
V
V2EX
爱范儿
爱范儿
Hugging Face - Blog
Hugging Face - Blog
Apple Machine Learning Research
Apple Machine Learning Research
B
Blog
V
Visual Studio Blog
有赞技术团队
有赞技术团队
I
InfoQ
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
J
Java Code Geeks
Stack Overflow Blog
Stack Overflow Blog
P
Proofpoint News Feed
云风的 BLOG
云风的 BLOG
雷峰网
雷峰网

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Connecting .NET Web API hosted in Azure App Service with ...
Aditya Abeys · 2026-04-29 · via DEV Community

TL;DR - Azure has made managed identities so important that it is recommended to use them even when connecting an API hosted in App Service with an Azure SQL Database. This article explores how Azure has ensured that configuration stays secure by replacing traditional credentials stored in database connection strings to managed identities.


🗺️The context

I completed the development of the first phase of the IdentityWebApi and tried to dev test the changes by hosting it and the related database in the cloud. I followed the following in Visual Studio in order to publish it to an App Service and the database to a new database server created in Azure SQL Database:

1.Select Publish option

2.Select Azure in the publish location and click Next

3.Select Azure App Service (Windows) and click Next

4.Create an App Service instance and click Next

5.Skip API management and click Next
6.Set type to publish and click Finish

7.Then create a new Azure SQL Database by clicking connect in SQL Server Database in the publish page

8.Once the database is connected click Next

9.In the next window, the following warning is displayed:

Please note that I changed the connection string name to match the configuration in appsettings.json

10.Click Next and then Finish
11.Finally Publish the solution


🧠 The problem

The problem is that Azure recommends that managed identities need to be used to access the database. This warning specifically mentions using them.

If I publish with the connection string that was set in the appsettings.json or even if I change it in the Azure portal, the following error will be shown when running the API.


🏗️ The traditional connection string used in .NET

The recommended approach to save a database connection string for locally or on-premise hosted .NET Web APIs is by using appsettings.json.

// appsettings.json
{
  "Logging": {
    "LogLevel": {
      "Default": "Information",
      "Microsoft.AspNetCore": "Warning"
    }
  },
  "AllowedHosts": "*",
  "ConnectionDB": "Server=ServerAddress;Database=DataBase;User Id=Username;Password=Password;TrustServerCertificate=True;"
}

Enter fullscreen mode Exit fullscreen mode

If I am using Azure SQL database, the database connection string will also require encryption and specific port settings:

Server=tcp:server.database.windows.net,1433;Initial Catalog=DataBase;Persist Security Info=False;User ID=Username;Password=Password;MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=False;Connection Timeout=30;

Enter fullscreen mode Exit fullscreen mode

If I am storing credentials in the cloud, Azure recommends that they are stored in an Azure managed service such as Azure Key Vault.


👤 The issue with using credentials in connection strings in Azure

Deploying a Web API in the cloud with credentials in connection strings has several issues. The following are several common issues observed:

1. Security – Whether the environment used is staging or production, storing sensitive data such as connection strings has a significant risk. Rotating credentials overcomes the surface that hackers can use to access such information, but it is time and resource consuming to regularly rotate connection string values
2. Requirement of credential management – As most applications use multiple deployments for various environments such as UAT and production, credentials need to be managed in each of them
3. Difficulty of access control via RBACRole-Based Access Control (RBAC), which improves least-privileged permissions such that a resource can be managed based on the roles that a certain user/group is granted, is often complex to achieve using credentials


🚀 The solution

The solution to the above issue is to remove the dependencies on traditional credentials in the connection string and depend on managed identities.

1.Change the connection string in the App Service’s variables

The first step is to change the connection string in the App Service’s variables.

For this, I navigated to the App Service, then clicked Environment Variables in Settings. Then clicked on the Connection Strings. I ensured there is only one connection string and it is the same as what was declared in the appsettings.json file.

For example, if my appsettings.json file has the following, then the variable in Environment Variables should be ConnectionDB.

// appsettings.json
{
  "Logging": {
    "LogLevel": {
      "Default": "Information",
      "Microsoft.AspNetCore": "Warning"
    }
  },
  "AllowedHosts": "*",
  "ConnectionDB": ""
}

Enter fullscreen mode Exit fullscreen mode

Click on the view icon and change it into the following:

Server=tcp:identitywebapidbserver.database.windows.net,1433;Initial Catalog=IdentityWebApi_db;Encrypt=True;TrustServerCertificate=False;Authentication=Active Directory Managed Identity;

Enter fullscreen mode Exit fullscreen mode

If my API repository uses Microsoft.Sql.Client library version 4.0.0 or more, then I can use Authentication= Active Directory Default;

2.Add my user in the database server

For this, I navigated to the database server that was created and clicked Microsoft Entra Admin.

Then clicked "Set Admin". Then selected my name.

3.Add database permission for this user in the database

For this, I navigated to the database and clicked Query Editor. Then clicked Microsoft Entra Authentication. Then clicked connect.

Clicked "AllowList IP" in the message. Then clicked connect.

4.(Optional) Generate a migration SQL script if the entity framework entities were not created in the database and then create them in the database

For this go to Visual Studio and click Package Manager Console. Then run the following:

Then go to the Azure SQL database and run the script to create the entities.

5.Then created a user with the name of the App Service. Grant db_owner role in the database.

CREATE USER [IdentityWebApi20260425143718] FROM EXTERNAL PROVIDER;
-- Grant permission
ALTER ROLE db_owner ADD MEMBER [IdentityWebApi20260425143718];

Enter fullscreen mode Exit fullscreen mode

6.In the App Service ensured that the system managed identity is enabled

Finally sent a request and checked the database tables on the data inserted.😊


🔗 Link

GitHub repo: https://github.com/PostOShare/IdentityWebApi