Nutshell Series

Complete Guide to Service Status Pages of Popular services

When working with Microsoft cloud services such as Azure, Microsoft 365, Visual Studio, or GitHub or any other services, it’s important to know where to check the official status dashboards. These pages help you quickly confirm whether an issue is on your side or a wider service outage.

Below is a consolidated table of the official status and health pages you should bookmark.

Service Status Page Notes
Azure Azure Status Dashboard
Azure Service Health
Azure Resource Health
Global real-time status of all Azure services by region.
Service Health
Resource Health
Azure (Personalized) Azure Service Health (Portal) Requires login; shows service health specific to your subscriptions.
Microsoft 365 / Office 365 Microsoft 365 Admin Center Admin-only; covers Exchange Online, SharePoint, Teams, OneDrive, etc.
Microsoft 365 (Public) Microsoft Cloud Status Broad incidents affecting Microsoft 365 services.
Microsoft 365 Updates @MSFT365Status on X/Twitter Official updates on outages and recovery progress.
Visual Studio Visual Studio Service Status Tracks licensing and Visual Studio service availability.
Azure DevOps Azure DevOps Status Shows pipelines, repos, artifacts, and test plan health.
GitHub GitHub Status Monitors repositories, Actions, Codespaces, Packages, etc.
Dynamics 365 Dynamics 365 Status Service health and incidents for Dynamics 365 apps.
Power Platform Power Platform Status Real-time health for Power BI, Power Apps, Power Automate, and Power Virtual Agents.
Xbox Live Xbox Status Tracks Xbox Live, Game Pass, multiplayer, and account service health.
Office Connectivity Office Connectivity Status Office Connectivity
Jira / Atlassian Atlassian Status Page Tracks Jira, Confluence, Bitbucket, Trello, and other Atlassian cloud services.
Slack Slack Status Real-time status of messaging, calls, and integrations.
Google Workspace Google Workspace Status Shows health of Gmail, Drive, Docs, Calendar, Meet, and more.
AWS AWS Service Health Dashboard Regional health information for EC2, S3, RDS, Lambda, and other AWS services.
Zoom Zoom Status Monitors meetings, chat, phone, and webinar services.
Dropbox Dropbox Status Tracks cloud file storage and sync service health.
Salesforce Salesforce Status Service health for Sales Cloud, Service Cloud, Marketing Cloud, and more.
Zendesk Zendesk Status Tracks helpdesk, chat, and CRM services.

Why These Status Pages Matter

Whenever you face connectivity issues, sign-in failures, or downtime in Microsoft services, checking these official dashboards should be your first step. They help distinguish between a local setup problem and a wider outage.

Bookmark these links to save troubleshooting time and stay informed about Microsoft and GitHub service health.

Nutshell Series

Fixing Azure Token Issuer Mismatch Error: “Primary Access Token is from the Wrong Issuer”

I recently ran into a frustrating Azure authentication error while working with ARM (Azure Resource Manager) APIs.
The error looked like this:

Cache-Control: no-cache
Pragma: no-cache
WWW-Authenticate: Bearer authorization_uri="https://login.windows.net/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", error="invalid_token", error_description="The primary access token is from the wrong issuer. It must match the tenant associated with this subscription. Please use correct authority to get the token."
x-ms-failure-cause: gateway
x-ms-request-id: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx

The Problem

The critical clue was:

The primary access token is from the wrong issuer. It must match the tenant associated with this subscription.

When I decoded the token using JWT.io, the iss (issuer)
claim was:

f8cdef31-a31e-4b4a-93e4-5f571e91255

That GUID is the Microsoft Services tenant — it appears when you sign in with a personal Microsoft account (MSA).
My Azure subscription, however, was tied to a specific Azure Active Directory (AAD) tenant, so Azure rejected the token because the issuer didn’t match.

What Caused It

  • I logged in using a personal Microsoft account (MSA).
  • The subscription belonged to an Azure AD tenant (not the Microsoft Services tenant).
  • Using VisualStudioCodeCredential or DefaultAzureCredential still returned tokens from the wrong issuer because the underlying login session was wrong.

Solution — Steps to Fix

The fix is straightforward: log into the correct tenant, set the subscription, and use credentials that respect the CLI session.

1) Log in to the correct tenant

az login --tenant <your-tenant-id>

2) Set the subscription

az account set --subscription <your-subscription-id-or-name>

3) Use Azure CLI credentials in C#

Instead of DefaultAzureCredential, switch to AzureCliCredential and fetch the token directly (this uses the Azure CLI credentials stored during az login — so make sure you’re logged in from the terminal):

// using Azure.Identity and Azure.Core
// var credential = new DefaultAzureCredential();
var credential = new AzureCliCredential();

string[] scopes = new[] { "https://management.azure.com/.default" };

var token = (await credential.GetTokenAsync(new TokenRequestContext(scopes))).Token;

// Optional alternative with explicit cancellation token
// token = (await credential.GetTokenAsync(new TokenRequestContext(scopes),
//     System.Threading.CancellationToken.None)).Token;

Note: This uses Azure CLI credentials stored during az login, so ensure you are logged in to the correct tenant and subscription in your terminal before running this code.

Key Takeaways

  • If your JWT iss claim is f8cdef31-a31e-4b4a-93e4-5f571e91255, you’re using a Microsoft Services tenant token (MSA) — it won’t work for subscriptions tied to an Azure AD tenant.
  • Fix the login by targeting the correct tenant with az login --tenant <tenant-id> and then set the subscription with az account set --subscription <subscription-id-or-name>.
  • Using AzureCliCredential in C# picks up tokens from your active Azure CLI session and helps avoid issuer mismatch issues.
Nutshell Series

☁️ Cloud Migration Strategies in a Nutshell


Thinking about moving to the cloud? There’s more than one way to get there. Each migration approach has its own pros, cons, and ideal use cases. In this post, we’ll break down six major cloud migration strategies that organizations use to transition smoothly and smartly.


🧱 1. Lift and Shift (Rehost)

Move it as-is. This strategy involves migrating your existing apps to the cloud without any code changes.

  • ✅ Fastest method
  • ✅ No code changes
  • ❌ Doesn’t leverage cloud-native benefits
  • Best for: Legacy apps or fast migrations

🛠️ 2. Replatform

Tweak a little. Make minor changes to use managed cloud services (like migrating from on-prem SQL Server to Azure SQL Database).

  • ✅ Better performance
  • ✅ Less maintenance
  • ❌ Still not fully cloud-native
  • Best for: Apps needing light optimization

🔁 3. Refactor (Re-architect)

Redesign for the cloud. This involves reworking app architecture to use microservices, containers, or serverless technologies.

  • ✅ Maximum scalability and cloud benefits
  • ✅ Future-proof architecture
  • ❌ Higher cost and complexity
  • Best for: Strategic modernization of core systems

🛍️ 4. Repurchase

Buy new (SaaS). Replace your existing app with a SaaS solution, like moving to Salesforce or Microsoft 365.

  • ✅ Low maintenance
  • ✅ Fastest implementation
  • ❌ Limited customizability
  • Best for: Standard tools like CRM, HR, or Email

🗑️ 5. Retire

Let it go. Identify and decommission apps that are no longer used or necessary.

  • ✅ Saves cost
  • ✅ Reduces system clutter
  • ❌ Risk of dependencies
  • Best for: Obsolete or duplicate applications

⏳ 6. Retain

Keep it on-prem for now. Retain certain applications that are not ready for the cloud due to business or technical constraints.

  • ✅ Safe for sensitive workloads
  • ❌ Misses out on cloud benefits
  • Best for: Apps with regulatory or latency concerns

📊 Quick Comparison Table

Strategy Code Change Speed Cloud Benefits Best For
Lift & Shift ❌ None 🟢 Fast 🔴 Low Legacy/Quick Wins
Replatform ⚠️ Minor 🟡 Medium 🟡 Partial Light Optimization
Refactor ✅ High 🔴 Slow 🟢 Full Strategic Modernization
Repurchase ❌ None 🟢 Fast 🟢 Full (SaaS) Commodity Tools
Retire ❌ N/A 🟢 Fast 🔴 N/A Unused Systems
Retain ❌ N/A N/A 🔴 None Critical On-Prem Apps
Nutshell Series

AWS vs Azure vs GCP

AWS (Amazon Web Services) vs Azure (Microsoft) vs GCP (Google Cloud Platform) – A Quick Comparison of the main services

Storage

Service typeDescriptionAWSAzureGCP
Object storageFor storing any files you regularly useSimple Storage Service (S3)Blob StorageCloud Storage Buckets
Archive storageLow cost (but slower) storage for rarely used filesS3 Glacier Instant, Glacier Flexible, Glacier Deep Archive tiersBlob Cool/Cold/Archive tiersCloud Storage Nearline, Coldline, Archive tiers
File storageFor storing files needing hierarchical organizationElastic File System (EFS)FSxAvers vFXTFilesFilestore
Block storageFor storing groups of related filesElastic Block StorageDisk StoragePersistent Disk
Hybrid storageMove files between on-prem & cloudStorage GatewayStorSimpleMigrateStorage Transfer Service
Edge/offline storageMove offline data to the cloudSnowballData BoxTransfer Appliance
BackupPrevent data lossBackupBackupBackup and Disaster Recovery

Database

Service typeDescriptionAWSAzureGCP
Relational DB managementStandard SQL DB (PostgreSQL, MySQL, SQL Server, etc.)Relational Database Service (RDS)AuroraSQLSQL DatabaseCloud SQLCloud Spanner
     
NoSQL: Key-valueRedis-like DBs for semi-structured dataDynamoDBCosmos DBTable storageCloud BigTableFirestore
NoSQL: DocumentMongoDB/CouchDB-like DBs for hierarchical JSON dataDocumentDBCosmos DBFirestoreFirebase Realtime Database
NoSQL: Column storeCassandra/HBase-like DBs for structured hierarchical dataKeyspacesCosmos DBCloud BigTable
NoSQL: GraphNeo4j-like DBs for connected dataNeptuneN/AN/A
CachingRedis/Memcached-like memory for calculationsElastiCacheCache for RedisHPC CacheMemorystore
Time Series DBDB tuned for time series dataTimestreamTime Series InsightsCloud BigTable
BlockchainDogecoin, etc.Managed BlockchainBlockchain ServiceBlockchain WorkbenchConfidential LedgerN/A

Compute

Service typeDescriptionAWSAzureGCP
Virtual machinesSoftware-emulated computersElastic Compute Cloud (EC2)Virtual MachinesCompute Engine
Spot virtual machinesCost-effective VMsEC2 Spot InstancesSpot Virtual MachinesSpot VMs
AutoscalingAdjust resources to match demandEC2 Auto ScalingVirtual Machine Scale SetsInstance Groups
Functions as a service (Serverless computing)Execute code chunks without worrying about infrastructureLambdaFunctionsCloud Functions
Platform as a serviceManage applications without worrying about infrastructureElastic BeanstalkRed Hat OpenShift on AWSApp ServiceCloud ServicesSpring CloudRed Hat OpenShiftApp Engine
Batch schedulingRun code at specified timesBatchBatchBatchCloud Scheduler
Isolated serversVM on your own machine, for high securityDedicated InstancesDedicated HostSole-tenant NodesShielded VMs
On-premise/Edge devicesCloud-services on your own hardwareOutpostsSnow FamilyModular DatacenterStack HubStack HCIStack EdgeN/A
Quantum computingDetermine if cat is alive or deadBraketQuantumN/A

Analytics

Service typeDescriptionAWSAzureGCP
Data WarehouseCentralized platform for all your dataRedShiftSynapse AnalyticsBigQuery
Big data platformRun Spark, Hadoop, Hive, Presto, etc.EMRData ExplorerHDInsightDataproc
Business analyticsDashboards and visualizationQuicksightFinSpacePower BI EmbeddedGraph Data ConnectLookerLooker StudioVertex AI Workbench
Real-time analyticsStreaming data analyticsKinesis Data AnalyticsKinesis Data StreamsManaged Streaming for KafkaStream AnalyticsEvent HubsDataflowPub/SubDatastream
Extract-Transform-Load (ETL)Preprocessing and importing dataGlueKinesis Data FirehoseSageMaker Data WranglerData FactoryData FusionDataflowDataproc,Dataprep by Trifacta
Workflow orchestrationBuild data and model pipelinesData PipelineManaged Workflows for AirflowData FactoryCloud Composer
Data lake creationImport data into a lakeLake FormationData ShareCloud Storage
Managed searchEnterprise searchCloudSearchOpenSearch ServiceKendraCognitive SearchCloud Search
Data CatalogMetadata managementGlue Data CatalogPurviewData ExplorerData Catalog

ML & AI

Service typeDescriptionAWSAzureGCP
Machine LearningTrain, fit, validate, and deploy ML modelsSageMakerMachine LearningVertex AI
Jupyter notebooksWrite data analyses and reportsSageMaker NotebooksNotebooksColab
Data science/machine learning VMVirtual machines tailored to data workDeep Learning AMIsData Science Virtual MachinesDeep Learning VM
AutoMLAutomatically build ML modelsSageMakerMachine Learning Studio,Automated MLVertex AI Workbench
Natural language Processing AIAnalyze text dataComprehendText AnalyticsNatural Language AI
Recommendation AIProduct recommendation enginePersonalizePersonalizerRecommendations AI
Document captureExtract text from printed text & handwritingTextractForm RecognizerDocument AI
Computer visionImage classification, object detection & other AI with image dataRekognitionPanoramaLookout for VisionCognitive Services for VisionVision AI
Speech to textSpeech transcriptionTranscribeCognitive Services for Speech to TextCognitive Services for Speaker RecognitionSpeech-to-Text
Text to speechSpeech generationPollyCognitive Services for Text to SpeechText-to-Speech
Translation AIConvert text between human languagesTranslateCognitive Services for Speech TranslationTranslatorTranslation AI
Video IntelligenceVideo indexing and asset searchRekognition VideoVideo IndexerVideo Intelligence API
AI agentsVirtual assistants and chatbotsLexAlexa Skills kitBot ServiceCognitive Services for Conversational Language UnderstandingDialogflow
Human-in-the-loopHuman-based quality control for AIAugmented AI (A2I)Cognitive Services Content MonitorN/A

Networking & Content Delivery

Service typeDescriptionAWSAzureGCP
Content delivery networkServe content to usersCloudFrontContent Delivery NetworkCloud CDN and Media CDN
Application Programming Interface (API) managementBuild and deploy APIsAPI GatewayAPI AppsAPI ManagementApigee API Management
Domain Name System (DNS)Route end users to applicationsRoute 53DNSCloud DNS
Load balancingDistribute work evenly across machinesElastic Load Balancing (ELB)Application GatewayLoad BalancerTraffic ManagerCloud Load Balancing

Containers

Service typeDescriptionAWSAzureGCP
Managed containersRun and deploy containersElastic Kubernetes ServiceElastic Container ServiceKubernetes ServiceContainer AppsKubernetes Engine
Container registrationManage container imagesElastic Container RegistryContainer RegistryArtifact Registry

Management & Security, Identity

Service typeDescriptionAWSAzureGCP
Access managementUser permissions and authenticationIdentity and Access Management (IAM)Entra IDCloud Identity
Activity trackingTrack user ActivityCloudTrailMonitor Activity LogAccess Transparency and Access Approval
SecurityProtect your data, network and applicationsSecurity HubSecuritySecurity Command Center
MonitoringMonitor network traffic and detect anomaliesCloudWatchTransit Gateway Network ManagerMonitorAnomaly DetectorOperationsNetwork Intelligence Center
AutomationPreform processes automaticallyOpsWorksAutomationCompute Engine Management
Cost optimizationReduce your cloud spendCost OptimizationCost ManagementRecommender

Integration

Feature / ServiceAzure Integration ServicesAWSGCP
Primary Integration ServicesLogic Apps, API Management, Service Bus, Event GridStep Functions, API Gateway, EventBridge, SNS, SQSCloud Functions, Apigee API Management, Pub/Sub, Cloud Tasks
Workflow AutomationLogic AppsStep FunctionsWorkflows
API ManagementAPI ManagementAPI GatewayApigee
Event-Driven ArchitectureEvent GridEventBridgePub/Sub
Messaging & QueuesService BusSQS & SNSCloud Pub/Sub
Serverless FunctionsAzure FunctionsAWS LambdaCloud Functions
Hybrid & On-Premises ConnectivityOn-Premises Data GatewayAWS Direct ConnectCloud Interconnect
B2B & EDI IntegrationIntegration Account for Logic AppsAWS Transfer Family (SFTP, FTPS, FTP)Cloud Storage & Partner Solutions (no native EDI support)
Monitoring & ObservabilityAzure Monitor, Application InsightsAmazon CloudWatch, AWS X-RayCloud Operations (Stackdriver)
Security & ComplianceAzure Security Center, Key VaultAWS IAM, AWS KMS, AWS ShieldGoogle IAM, Security Command Center
Pricing ModelAzure Pricing (Logic Apps per execution, API Management tier-based)AWS Pricing (API Gateway per million requests, Lambda per invocation)GCP Pricing (Cloud Functions per execution, Pub/Sub per message)