Building secure Multi-tenant applications in Elixir
1–4 of 4 posts
Re: Building secure Multi-tenant applications in Elixir
#2Slab is a multi-tenant Phoenix app where all tables in our database, including pivot tables, have an `org_id` foreign key that references the team the data belongs to. Using association defaults enforces that the correct `org_id` value is automatically set for all resources.
We combine this with an `OrgRepo` module that wraps around our default `Repo`, which can only write or read other resources with the same `org_id`, ensuring that data for one team has no possibility of accidentally leaking to another team (using `Repo` is forbidden in our codebase).
An added bonus is; when we eventually have to scale our databases via something like sharding and have to vertically partition the data based on `org_id`, we would already have this system in place to support us.
Re: Building secure Multi-tenant applications in Elixir
#3Is your strategy meant to be an alternative to prepare_query?
Re: Building secure Multi-tenant applications in Elixir
#4I'd be curious how this compares to Ecto.Repo.prepare_query/3 at https://hexdocs.pm/ecto/multi-tenancy-with-foreign-keys.html... which sets you up for foreign key based multi-tenancy that can be enforced automatically in most common cases. Is your strategy meant to be an alternative to prepare_query?