docs: replace master/slave terminology in Cluster example (#521)

This terminology is frowned upon within my firm and I accidentally forwarded this example to 750 staff.
pull/580/head
Daniel Pope 3 years ago committed by GitHub
parent a4f5394973
commit 2a8fbacb05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -22,11 +22,11 @@ with Diagram("Simple Web Service with DB Cluster", show=False):
web = ECS("service")
with Cluster("DB Cluster"):
db_main = RDS("main")
db_main - [RDS("replica1"),
db_primary = RDS("primary")
db_primary - [RDS("replica1"),
RDS("replica2")]
dns >> web >> db_main
dns >> web >> db_primary
```
![simple web service with db cluster diagram](/img/simple_web_service_with_db_cluster_diagram.png)

Loading…
Cancel
Save