raudit_storage.mmd#
This the draft Luis gave me

Classic diagram (mermaid technology)#
flowchart BT
subgraph raudit_storage[raudit_storage.mmd]
file_syst[/fileSystem\nCACHE/]
s3[(S3)]
mongo_db[(MongoDB)]
redis([redis])
end
file_syst---s3
Diagram using python#
from diagrams import Diagram, Cluster, Edge
from diagrams.onprem.database import MongoDB
from diagrams.programming.flowchart import Database
from diagrams.aws.database import ElasticacheCacheNode
from diagrams.aws.network import CloudFrontDownloadDistribution
from diagrams.oci.governance import Audit
with Diagram("",show=False):
with Cluster("raudit_storage.mmd"):
mongodb = MongoDB("MongoDB")
file_syst = ElasticacheCacheNode("fileSystem CACHE")
redis = Audit("redis")
s3 = Database("S3")
out = CloudFrontDownloadDistribution("")
s3 - file_syst
s3 - out
mongodb - out
redis - out