Mermaid test

graph TD
  subgraph Web_Section [Section 1: Web Tier]
    W1[IIS Instance 1]
    W2[IIS Instance 2]
  end

  subgraph DB_Section [Section 2: SQL Cluster]
    D1[SQL Node 1]
    D2[SQL Node 2]
  end

  W1 & W2 -->|Port 1433| D1 & D2
   

Part 1: The Problem

[mermaid]
graph TD
    User((External User)) -->|HTTPS 443| AGW[App Gateway]
    subgraph Spoke_VNet
    AGW -->|Port 80| WebTier[IIS Web Tier]
    WebTier -->|Port 8080| AppTier[Ubuntu App Tier]
    AppTier -->|Port 1433| SQLFCI[SQL Failover Cluster]
    end
[/mermaid]

Part 3: Architecture

Part 4: Implementation


Posted

in

by

Tags:

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *