You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The B1 App Service Plan covers all three Web Apps — Azure charges per plan, not per app. Separate plans would cost ~$39/month instead of $13.
379
+
* Azure Static Web Apps Free tier includes built-in CDN, global distribution, and managed TLS certificates at no cost.
380
+
* Both SQL databases share one logical SQL Server — no extra charge for the server itself.
381
+
* Always On is enabled on B1 (required to prevent IdentityServer from sleeping) — included in the B1 price.
382
+
383
+
**To eliminate cost entirely when not in use:**
384
+
385
+
```bash
386
+
# Delete all resources in one command (can be recreated from Bicep in minutes)
387
+
az group delete --name rg-talent-dev --yes --no-wait
388
+
```
389
+
390
+
**Visual Studio subscribers:** The monthly Azure credit (~$150/month for Visual Studio Professional, ~$50/month for Visual Studio Community) covers this entire stack with budget to spare.
391
+
392
+
---
393
+
360
394
## 🔑 Key Design Decisions
361
395
362
396
**One shared App Service Plan for all three .NET apps.** Azure charges at the App Service Plan level, not per Web App. Running three Web Apps (API, IdentityServer STS, and IdentityServer Admin) on one B1 plan costs the same as running one. Separate plans would triple the compute cost for no benefit at this scale.
0 commit comments