Hello R., and all,
For that you can use alias, as:
@startuml
node srv01{
component my_service as msrv01
}
node srv02{
component my_service as msrv02
}
node databaseserver {
database database
}
node consumer1{
[consumer_application]
}
[consumer_application] --> msrv01
[consumer_application] --> msrv02
msrv01 --> database
msrv02 --> database
@enduml
Enjoy,
Regards.