You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
801 B
23 lines
801 B
graph TB |
|
subgraph GC["geonet-console (Laravel)"] |
|
APP["Application"] |
|
end |
|
|
|
subgraph PGCONT["audit-postgres (container di 10.100.1.24)"] |
|
APPDB["databaselist_app\n- ldap_user_meta\n- service_tokens\n- api_tokens\n- database_connections"] |
|
AUDITDB["databaselist_audit\n- audit_logs"] |
|
end |
|
|
|
subgraph EXT["External (10.100.1.25)"] |
|
MSSQL["SQL Server 2019\n- database registry (read)"] |
|
PGSEARCH["PostgreSQL\ngeonet_project_search\n(pgvector — Fase 4)"] |
|
end |
|
|
|
APP -->|pgsql connection| APPDB |
|
APP -->|audit connection| AUDITDB |
|
APP -->|mssql connection read-only| MSSQL |
|
APP -.->|project_search Fase 4| PGSEARCH |
|
|
|
style APPDB fill:#FF9800,color:#fff |
|
style AUDITDB fill:#9C27B0,color:#fff |
|
style MSSQL fill:#607D8B,color:#fff
|
|
|