We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 878f217 commit be140d0Copy full SHA for be140d0
README.md
@@ -175,32 +175,19 @@ sequenceDiagram
175
176
---
177
178
-## 🛡️ Resilience Hub Policy
+### 🛡️ Resilience Hub Policy
179
180
```mermaid
181
stateDiagram-v2
182
- [*] --> Region
183
- Region --> AZ
184
- AZ --> Hardware
185
- Hardware --> Software
186
- Software --> [*]
187
-
188
- state Region {
189
- RTO: 3600s
190
- RPO: 5s
191
- }
192
- state AZ {
193
- RTO: 1s
194
- RPO: 1s
195
196
- state Hardware {
197
198
199
200
- state Software {
201
- RTO: 5400s
202
- RPO: 300s
203
+ [*] --> Region
+ Region: RTO = 3600s\nRPO = 5s
+ Region --> AZ
+ AZ: RTO = 1s\nRPO = 1s
+ AZ --> Hardware
+ Hardware: RTO = 1s\nRPO = 1s
+ Hardware --> Software
+ Software: RTO = 5400s\nRPO = 300s
+ Software --> [*]
204
```
205
206
0 commit comments