docs/deploy/access-control/access-control-design-ee-st...

5.4 KiB

title description keywords redirect_from ui_tabs
Access control design with Docker EE Standard Learn how to architect multitenancy by using Docker Enterprise Edition Advanced. authorize, authentication, users, teams, groups, sync, UCP, role, access control
/ucp/
version orhigher
ucp-3.0 true
version orlower
ucp-2.2 true

{% if include.ui %} {% if include.version=="ucp-3.0" %} This topic is under construction.

{% elsif include.version=="ucp-2.2" %}

Collections and grants are strong tools that can be used to control access and visibility to resources in UCP.

This tutorial describes a fictitious company named OrcaBank that is designing an architecture with role-based access control (RBAC) for their application engineering group.

Team access requirements

OrcaBank has organized their application teams by specialty with each team providing shared services to other applications. Developers do their own DevOps and deploy and manage the lifecycle of their applications.

OrcaBank has four teams with the following needs:

  • security should have view-only access to all applications in the swarm.
  • db should have full access to all database applications and resources. See DB Team.
  • mobile should have full access to their Mobile applications and limited access to shared db services. See Mobile Team.
  • payments should have full access to their Payments applications and limited access to shared db services.

Role composition

To assign the proper access, OrcaBank is configuring a combination of default and custom roles:

  • View Only (default role) allows users to see but not edit all Swarm resources.
  • View & Use Networks + Secrets (custom role) enables users to connect to networks and use secrets used by db containers, but prevents them from seeing or impacting the db applications themselves.
  • Ops (custom role) allows users to do almost all operations against all types of resources.

image{: .with-border}

Collection architecture

OrcaBank is also creating collections that fit their team structure.

In their case, all applications share the same physical resources, so all nodes and applications are being put into collections that nest under the built-in collection, /Shared.

  • /Shared/mobile hosts all Mobile applications and resources.
  • /Shared/payments hosts all Payments applications and resources.

For Secure multi-tenancy with node-based isolation, use Docker Enterprise Advanced. We cover this scenario in the next tutorial.

Other collections were also created to enable shared db applications.

  • /Shared/db is a top-level collection for all db resources.
  • /Shared/db/payments is a collection of db resources for Payments applications.
  • /Shared/db/mobile is a collection of db resources for Mobile applications.

The collection architecture has the following tree representation:

/
├── System
└── Shared
    ├── mobile
    ├── payments
    └── db
        ├── mobile
        └── payments

OrcaBank's Grant composition ensures that their collection architecture gives the db team access to all db resources and restricts app teams to shared db resources.

LDAP/AD integration

OrcaBank has standardized on LDAP for centralized authentication to help their identity team scale across all the platforms they manage.

To implement LDAP authenticaiton in UCP, OrcaBank is using UCP's native LDAP/AD integration to map LDAP groups directly to UCP teams. Users can be added to or removed from UCP teams via LDAP which can be managed centrally by OrcaBank's identity team.

The following grant composition shows how LDAP groups are mapped to UCP teams.

Grant composition

OrcaBank is taking advantage of the flexibility in UCP's grant model by applying two grants to each application team. One grant allows each team to fully manage the apps in their own collection, and the second grant gives them the (limited) access they need to networks and secrets within the db collection.

image{: .with-border}

OrcaBank access architecture

OrcaBank's resulting access architecture shows applications connecting across collection boundaries. By assigning multiple grants per team, the Mobile and Payments applications teams can connect to dedicated Database resources through a secure and controlled interface, leveraging Database networks and secrets.

Note: Because this is Docker Enterprise Standard, all resources are deployed across the same group of UCP worker nodes. Node segmentation is provided in Docker Enterprise Advanced and discussed in the next tutorial.

image{: .with-border}

DB team

The db team is responsible for deploying and managing the full lifecycle of the databases used by the application teams. They can execute the full set of operations against all database resources.

image{: .with-border}

Mobile team

The mobile team is responsible for deploying their own application stack, minus the database tier that is managed by the db team.

image{: .with-border}

Where to go next

{% endif %} {% endif %}