From 2cff4c75d27b5277a7197ce3a3e5e7a43e67a214 Mon Sep 17 00:00:00 2001
From: Benjamin Kane <6081085+bbkane@users.noreply.github.com>
Date: Fri, 21 Apr 2023 14:44:32 -0700
Subject: [PATCH] Emphasize rule order
---
docs/dynamic_records.md | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/docs/dynamic_records.md b/docs/dynamic_records.md
index 58a87f6..7493d98 100644
--- a/docs/dynamic_records.md
+++ b/docs/dynamic_records.md
@@ -81,14 +81,15 @@ If you encounter validation errors in dynamic records suggesting best practices
title: Visual Representation of the Rules and Pools
---
flowchart LR
- query((Query)) --goelocate--> rule_0[Rule 0
AF-ZA
AS
OC]
- query --geolocate--> rule_1[Rule 1
AF
EU]
- query --geolocate--> rule_2["Rule 2
(catch all)"]
- rule_0 --to pool--> pool_apac[Pool apac
1.1.1.1
2.2.2.2]
+ query((Query)) --> rule_0[Rule 0
AF-ZA
AS
OC]
+ rule_0 --no match--> rule_1[Rule 1
AF
EU]
+ rule_1 --no match--> rule_2["Rule 2
(catch all)"]
+
+ rule_0 --match--> pool_apac[Pool apac
1.1.1.1
2.2.2.2]
pool_apac --fallback--> pool_na
- rule_1 --to pool--> pool_eu["Pool eu
3.3.3.3 (2/5)
4.4.4.4 (3/5)"]
+ rule_1 --match--> pool_eu["Pool eu
3.3.3.3 (2/5)
4.4.4.4 (3/5)"]
pool_eu --fallback--> pool_na
- rule_2 --to pool---> pool_na[Pool na
5.5.5.5
6.6.6.6
7.7.7.7]
+ rule_2 --> pool_na[Pool na
5.5.5.5
6.6.6.6
7.7.7.7]
pool_na --fallback--> values[values
3.3.3.3
4.4.4.4
5.5.5.5
6.6.6.6
7.7.7.7]
classDef queryColor fill:#3B67A8,color:#ffffff