frostfs-node/docs/images/authentication/authoverview.puml
Anton Nikiforov 700e891b85 [#1103] Fix end of file and trim trailing whitespace
Signed-off-by: Anton Nikiforov <an.nikiforov@yadro.com>
2024-04-24 16:31:04 +03:00

28 lines
892 B
Text

@startuml authoverview
!include <c4/C4_Container.puml>
!include <c4/C4_Component.puml>
AddElementTag("smart-contract", $bgColor=#0abab5)
Person(user, "User", "User with private key")
Container_Boundary(stor, "FrostFS Storage") {
Component(verify, "Sign Service", $descr="Check request signature")
Component(apesvc, "APE Service")
Component(objsvc, "Object service")
}
Container_Boundary(neogo, "Blockchain") {
Interface "NeoGo"
Component(ffsid, "FrostFS ID", $tags="smart-contract", $descr="Stores namespaces and users")
Component(policy, "Policy", $tags="smart-contract", $descr="Stores APE rules")
}
Rel_R(user, verify, "Requests", "gRPC")
Rel_R(verify, apesvc, "Access control")
Rel_R(apesvc, objsvc, "Operation")
Rel_D(apesvc, NeoGo, "Get data to validate request")
Rel("NeoGo", ffsid, "Fetch users")
Rel("NeoGo", policy, "Fetch policies")
SHOW_LEGEND(true)
@enduml