<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Adeyemi Adenuga</title>
    <description>The latest articles on DEV Community by Adeyemi Adenuga (@adenugaadeyemi).</description>
    <link>https://dev.to/adenugaadeyemi</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3949168%2F447dec8d-88bc-4a23-8dff-1957ebb66698.jpeg</url>
      <title>DEV Community: Adeyemi Adenuga</title>
      <link>https://dev.to/adenugaadeyemi</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/adenugaadeyemi"/>
    <language>en</language>
    <item>
      <title>How Microsoft Azure Ensures Reliability, Scalability, and Business Continuity</title>
      <dc:creator>Adeyemi Adenuga</dc:creator>
      <pubDate>Sun, 24 May 2026 15:12:55 +0000</pubDate>
      <link>https://dev.to/adenugaadeyemi/how-microsoft-azure-ensures-reliability-scalability-and-business-continuity-1eo7</link>
      <guid>https://dev.to/adenugaadeyemi/how-microsoft-azure-ensures-reliability-scalability-and-business-continuity-1eo7</guid>
      <description>&lt;p&gt;&lt;strong&gt;Introduction&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;In today’s digital landscape, businesses demand cloud platforms that deliver unwavering performance, the ability to grow seamlessly with demand, and robust protection against disruptions. Microsoft Azure stands out as a leader in these areas, offering a comprehensive suite of features, global infrastructure, and intelligent tools designed to support mission-critical applications. This post explores how Azure delivers on reliability, scalability, and business continuity, empowering organizations to operate with confidence.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Foundation: Azure’s Global Infrastructure
&lt;/h3&gt;

&lt;p&gt;Azure’s architecture begins with a vast network of over 60 regions, 300+ datacenters, and extensive fiber connectivity worldwide. This foundation underpins its capabilities for reliability and continuity. Availability Zones—physically separate datacenters within a region, each with independent power, cooling, and networking—provide the first layer of isolation against localized failures.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Diagram: Azure Availability Zones Architecture&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I’ve generated a conceptual diagram illustrating Availability Zones within a single Azure region:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgk55fov3junmjexkj085.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgk55fov3junmjexkj085.png" alt="Image1" width="800" height="537"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Ensuring Reliability: High Availability and Resilience
&lt;/h3&gt;

&lt;p&gt;Reliability in Azure means minimizing downtime through built-in redundancy and automated recovery. Key mechanisms include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Availability Zones and Sets&lt;/strong&gt;: Deploying resources across multiple zones achieves up to 99.99% uptime SLAs for services like Virtual Machines. A single zone failure has minimal impact as traffic and data shift seamlessly.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Service-Level Agreements (SLAs)&lt;/strong&gt;: Azure offers strong guarantees—99.99% for many zone-redundant services and even higher (99.995%) for select database tiers.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Data Redundancy&lt;/strong&gt;: Azure Storage replicates data synchronously across zones or geo-redundantly across regions, protecting against hardware failures and ensuring data durability.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Monitoring and Self-Healing&lt;/strong&gt;: Tools like Azure Monitor and Application Insights provide real-time insights, while services like App Service automatically move workloads from unhealthy nodes.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Analysis&lt;/strong&gt;: These features reduce expected annual downtime significantly. For example, moving from a single VM (99.9% SLA) to zone-redundant deployment can cut potential downtime by a factor of 10, translating to minutes rather than hours of disruption per year. This is critical for industries like finance or healthcare where even brief outages carry high costs.&lt;/p&gt;

&lt;h3&gt;
  
  
  Driving Scalability: Meeting Demand Dynamically
&lt;/h3&gt;

&lt;p&gt;Scalability ensures your applications handle growth—whether seasonal spikes, sudden traffic surges, or long-term expansion without performance degradation or over-provisioning.&lt;/p&gt;

&lt;p&gt;Azure supports both &lt;strong&gt;vertical scaling&lt;/strong&gt; (adding resources to existing instances) and &lt;strong&gt;horizontal scaling&lt;/strong&gt; (adding more instances). The standout capability is &lt;strong&gt;autoscaling&lt;/strong&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Virtual Machine Scale Sets (VMSS)&lt;/strong&gt;: Automatically adjust the number of VM instances based on CPU, memory, or custom metrics.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;App Service and Functions&lt;/strong&gt;: Scale based on HTTP traffic or demand with minimal configuration. New “Automatic Scaling” options handle this intelligently without complex rules.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Azure Kubernetes Service (AKS)&lt;/strong&gt;: Horizontal Pod and Cluster Autoscalers manage containerized workloads efficiently.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Database Scaling&lt;/strong&gt;: Services like Azure Cosmos DB and SQL Database scale throughput globally with low latency.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Diagram: Azure Autoscaling Workflow&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Here’s a visual representation of how autoscaling works in Azure:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwbb3sl8w6m561klqze65.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwbb3sl8w6m561klqze65.png" alt="Image2" width="800" height="537"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Analysis&lt;/strong&gt;: Autoscaling not only maintains performance but optimizes costs by scaling down during low demand. Organizations often report significant savings while improving user experience, as resources match real-time needs rather than peak estimates.&lt;/p&gt;

&lt;h3&gt;
  
  
  Delivering Business Continuity: Backup, Recovery, and Resilience
&lt;/h3&gt;

&lt;p&gt;Business Continuity (BC) and Disaster Recovery (DR) focus on keeping operations running and recovering quickly from outages, whether due to hardware failures, natural disasters, or cyberattacks.&lt;/p&gt;

&lt;p&gt;Azure provides integrated tools:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Azure Backup&lt;/strong&gt;: Centralized, secure backups for VMs, databases, and storage with long-term retention and ransomware protection.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Azure Site Recovery&lt;/strong&gt;: Enables continuous replication, automated failover, and failback. It supports Azure-to-Azure, hybrid, and on-premises scenarios with low Recovery Point Objectives (RPO) and Recovery Time Objectives (RTO).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Geo-Redundancy and Region Pairing&lt;/strong&gt;: Data can be replicated to paired regions for failover during regional outages.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Azure Business Continuity Center&lt;/strong&gt;: Offers centralized management, reporting, and orchestration for large-scale BC/DR strategies.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Diagram: Azure Business Continuity and Disaster Recovery Flow&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Conceptual diagram of BCDR in Azure:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5u14yeohxqvzp8yy6s6p.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5u14yeohxqvzp8yy6s6p.png" alt="Image3" width="800" height="537"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Analysis&lt;/strong&gt;: These capabilities allow businesses to meet stringent compliance requirements (e.g., ISO, SOC) while testing DR plans non-disruptively. In practice, automated failover can restore operations in minutes, far faster than traditional on-premises setups.&lt;/p&gt;

&lt;h3&gt;
  
  
  Interconnected Excellence
&lt;/h3&gt;

&lt;p&gt;Reliability, scalability, and business continuity in Azure are deeply interconnected. High availability (reliability) provides the base, autoscaling handles variable loads (scalability), and Site Recovery + Backup ensure continuity during major events. Together with Azure’s Well-Architected Framework, organizations can design resilient, cost-effective solutions.&lt;/p&gt;

&lt;p&gt;Real-world impact: Enterprises using these features report higher uptime, faster innovation, and reduced operational overhead. For instance, zone-redundant deployments combined with autoscaling enable seamless handling of Black Friday-level traffic without manual intervention.&lt;/p&gt;

&lt;h3&gt;
  
  
  Conclusion: Building the Future on Azure
&lt;/h3&gt;

&lt;p&gt;Microsoft Azure transforms potential vulnerabilities into strengths through intelligent design, automation, and global scale. Whether you’re a startup scaling rapidly or an enterprise safeguarding critical operations, Azure provides the tools to ensure your business remains reliable, agile, and always available.&lt;/p&gt;

&lt;p&gt;Ready to get started? Explore Azure’s reliability documentation, test autoscaling in a free tier, or design a BCDR strategy tailored to your needs. &lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>programming</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Introduction to Microsoft Azure: A Beginner’s Guide</title>
      <dc:creator>Adeyemi Adenuga</dc:creator>
      <pubDate>Sun, 24 May 2026 14:46:45 +0000</pubDate>
      <link>https://dev.to/adenugaadeyemi/introduction-to-microsoft-azure-a-beginners-guide-49dj</link>
      <guid>https://dev.to/adenugaadeyemi/introduction-to-microsoft-azure-a-beginners-guide-49dj</guid>
      <description>&lt;p&gt;&lt;strong&gt;Introduction&lt;/strong&gt;&lt;br&gt;
Microsoft Azure is essentially a cloud computing platform launched in 2010. In simple terms, it’s like renting powerful computers, storage, and software over the internet instead of buying and maintaining your own hardware. This allows businesses and individuals to build, deploy, and manage applications without the hassle of physical infrastructure. Azure operates through a global network of over 400 datacenters in more than 70 regions, making it one of the largest cloud infrastructures available.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Key Features&lt;/strong&gt;&lt;br&gt;
Extensive Services: Over 200 products covering AI, data analytics, computing, networking, and more. It supports models like Infrastructure as a Service (IaaS) for virtual machines, Platform as a Service (PaaS) for app development, and Software as a Service (SaaS) for ready-to-use apps.&lt;br&gt;
Security: Built-in protections monitored by over 10,000 experts, analyzing 78 trillion security signals daily.&lt;br&gt;
AI Integration: Azure AI Foundry offers tools and over 11,000 models for building and scaling AI applications.&lt;br&gt;
Hybrid and Multicloud Support: Works seamlessly with on-premises setups, other clouds, and edge devices.&lt;br&gt;
Open-Source Friendly: Collaborates with Linux, Kubernetes, GitHub, and more.&lt;br&gt;
Benefits&lt;br&gt;
Cost Efficiency: Pay only for what you use, reducing maintenance costs.&lt;br&gt;
Scalability: Easily scale resources up or down as needed.&lt;br&gt;
Reliability: Trusted by 95% of Fortune 500 companies for enterprise-level performance.&lt;br&gt;
Innovation Boost: Accelerates development with AI, analytics, and automation tools.&lt;br&gt;
Global Reach: Low-latency access worldwide for better performance.&lt;br&gt;
The main Azure portal overview with navigation highlights.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fnyqfywlwwq2vtvvjvmpw.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fnyqfywlwwq2vtvvjvmpw.png" alt="Image1" width="800" height="473"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Press enter or click to view image in full size&lt;/p&gt;

&lt;p&gt;Managing Budgets in Azure: Step-by-Step Guide&lt;br&gt;
In simplified terms, managing budgets in Azure is like setting a spending limit on your credit card for cloud services. It helps track costs, set alerts to avoid surprises, and ensure you stay within financial boundaries. Azure’s Cost Management tools evaluate spending against your defined budgets, including actual and forecasted costs.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Prerequisites for Budget Management&lt;/strong&gt;&lt;br&gt;
Sign in to the Azure portal at &lt;a href="https://portal.azure.com" rel="noopener noreferrer"&gt;https://portal.azure.com&lt;/a&gt;.&lt;br&gt;
Before starting:&lt;/p&gt;

&lt;p&gt;Choose a scope (like a subscription, resource group, or billing account) where you’ll apply the budget. This depends on your Azure account type (e.g., Enterprise Agreement or pay-as-you-go).&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fw1rhvefp5gb4d6wqd3po.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fw1rhvefp5gb4d6wqd3po.png" alt="Image2" width="800" height="243"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Press enter or click to view image in full size&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Choose a subscription&lt;/strong&gt;&lt;br&gt;
Have the right permissions: Reader to view, Contributor or Owner to create/manage.&lt;br&gt;
All items in the scope must use the same currency.&lt;br&gt;
New subscriptions might take up to 48 hours for features to activate.&lt;br&gt;
&lt;strong&gt;Creating a Budget: Detailed Walkthrough&lt;/strong&gt;&lt;br&gt;
Step 1: Create a Budget in the Azure Portal&lt;/p&gt;

&lt;p&gt;Navigate to your scope: In the Azure portal, go to the area you want to budget for. For example, select Subscriptions &amp;gt; choose your subscription &amp;gt; Budgets. Or for a resource group: Resource groups &amp;gt; select group &amp;gt; Budgets.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5akxhervt8dzukg67rmt.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5akxhervt8dzukg67rmt.png" alt="Image3" width="797" height="732"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Press enter or click to view image in full size&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Click Add to start creating a new budget.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Set scope and filters: Confirm the scope. Add filters if needed, like specific resource groups or services (e.g., virtual machines) to focus the budget.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Enter budget details: Give it a name, choose a reset period (monthly, quarterly, annually, or billing-based), and set an expiration date if you want it to auto-delete.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Define the amount: Input your budget amount. You’ll see a graph with suggested thresholds based on forecasts.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Click Next to configure alerts.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Step 2: Configure Budget Alerts&lt;/p&gt;

&lt;p&gt;Set up alerts:&lt;br&gt;
For actual costs: Set percentages (0.01% to 1000%) and add up to 5 email addresses. Alerts trigger when spending hits the threshold.&lt;br&gt;
For forecasted costs: Similar, but based on predictions.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Ensure &lt;a href="mailto:azure-noreply@microsoft.com"&gt;azure-noreply@microsoft.com&lt;/a&gt; is whitelisted in your email to receive alerts promptly.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Save it: Click Create. The budget will show in Cost Analysis for tracking.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fw4k64to1tsdkjn1yww7j.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fw4k64to1tsdkjn1yww7j.png" alt="Image4" width="800" height="459"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Press enter or click to view image in full size&lt;/p&gt;

&lt;p&gt;Create and manage budgets — Microsoft Cost Management&lt;br&gt;
Creating and Managing Resource Groups in Azure: Detailed Walkthrough&lt;br&gt;
A resource group is like a folder in Azure that organizes related resources (e.g., VMs, databases) for a project. It simplifies management: you can deploy, update, or delete everything in the group at once. Resources in the group can be in different locations, but the group’s metadata (extra info about resources) is stored, which is important for compliance.&lt;/p&gt;

&lt;p&gt;Prerequisites&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Sign in to the Azure portal at &lt;a href="https://portal.azure.com" rel="noopener noreferrer"&gt;https://portal.azure.com&lt;/a&gt;.
Creating a Resource Group: Detailed Walkthrough&lt;/li&gt;
&lt;li&gt;Sign in: Go to &lt;a href="https://portal.azure.com" rel="noopener noreferrer"&gt;https://portal.azure.com&lt;/a&gt; and log in.
Access Resource Groups: Search for and select Resource groups.&lt;/li&gt;
&lt;li&gt;Start creation: Click Create.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvabnno53pses5f49n4q6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvabnno53pses5f49n4q6.png" alt="Image5" width="711" height="449"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Press enter or click to view image in full size&lt;/p&gt;

&lt;p&gt;The resource groups list and creation interface for quick organization.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Fill in details:&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Subscription: Pick your Azure subscription.&lt;br&gt;
Resource group name: Enter a unique name (e.g., “MyVM1”).&lt;br&gt;
Region: Choose a location like “Central US” (this is for metadata storage).&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Review and create: Click Review + Create.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Finalize: Click Create. It takes a few seconds.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Verify: Refresh the list or check notifications to see and open your new group.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Here’s what the creation screen looks like:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ftp53aanm6goj70eumdvf.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ftp53aanm6goj70eumdvf.png" alt="Image6" width="800" height="512"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6czs3prr19lu0035nazy.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6czs3prr19lu0035nazy.png" alt="Image7" width="683" height="466"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgxc2t9gooy119yb59qgr.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgxc2t9gooy119yb59qgr.png" alt="Image8" width="800" height="487"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Press enter or click to view image in full size&lt;/p&gt;

&lt;p&gt;Create Azure Resource Group | Cache Docs&lt;/p&gt;

&lt;p&gt;Use the Azure portal and Azure Resource Manager to Manage Resource&lt;br&gt;
Press enter or click to view image in full size&lt;/p&gt;

&lt;p&gt;Example of the Azure portal interface where you can create and view resource groups&lt;/p&gt;

</description>
      <category>azure</category>
      <category>ai</category>
      <category>webdev</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
