Skip to content
Fides Configuration
Security Best Practices

Security Best Practices for Fides Deployment and Operation

Fides offers several configuration options to flexibly manage a variety of deployments. This guide is meant to be used as a supplement to the configuration options, and provides a summary for best practices to ensure appropriate security methods when deploying and operating Fides.

Deployment Diagrams

Generic Deployment Diagram

  • The hosted fides data stores (Postgres & Redis) must be deployed before Fides itself can be deployed. These data stores should be dedicated to Fides. Access to them must be protected e.g. do not expose them to untrusted networks such as the public Internet.

  • The simplest deployment model is to centralize all Fides functionality on a single fides container. However, it is possible to divide work across multiple fides containers on the same host or orchestration platform.

  • The following components are optional and only deployed or integrated when using Privacy Center.

    • Privacy Center container (and UI)
    • Storage destination
    • Messaging provider
  • The public ingress / reverse proxy component is not part of Fides, but Fides must not be deployed to production without it.

Generic Deployment Diagram

Public Ingress: TLS Termination of Inbound Traffic

The Fides webserver and Privacy Center services are not designed for a deployment with direct termination of TLS for inbound traffic. These services must not be exposed to users on untrusted networks. Therefore a reverse proxy or load balancer must be placed in front of them to enforce encryption of inbound traffic using TLS.

Public Ingress TLS Termination Diagram

Public Ingress: Route Allow-Listing for Inbound Traffic

Expsosing all Fides API endpoints to users on untrusted networks such as the public Internet is not recommended. Therefore an ingress or API gateway must be placed in front of the Fides webserver to allow-list only the minimum set of routes required by external users.

Public Ingress Route Allow Listing

Public Internet --> Fides Webserver

Only the following endpoints should be allow-listed from the public Internet to the Fides webserver.

  • /api/v1/consent-request
  • /api/v1/consent-request/{consent_request_id}/preferences
  • /api/v1/consent-request/{consent_request_id}/verify
  • /api/v1/id-verification/config
  • /api/v1/oauth/callback
  • /api/v1/privacy-request
  • /api/v1/privacy-request/{privacy_request_id}/verify

Where {consent_request_id} and {privacy_request_id} take the form of UUIDs prefixed with con_ and pri_, respectively e.g.

  • /api/v1/consent-request/con_4f0d00e2-730c-4ca1-9c97-2c40ec55f847/verify
  • /api/v1/privacy-request/pri_ae45de5b-cb8a-4567-9784-30692d82d00e/verify

The UUIDs are randomly generated and will be different for each request.

Public Internet → Privacy Center UI

Allow all routes to the Privacy Center UI container from the public Internet.

Trusted Internal Networks → Fides Webserver

Allow-list all routes to the Fides webserver from the trusted internal networks on which your Admin UI and API users will be present.

Privacy Center Front-End Cache

The Privacy Center UI is intended to be accessed by users on the public Internet. To improve performance for these users and reduce load on the Privacy Center UI origin server, it is recommended (but optional) to deploy a cache for the Privacy Center’s static assets between the user and the public ingress.

Privacy Center Front-End Cache

Security Best Practices

Version Management

  • [DevOps] Deploy stable, maintained software release versions only. Re-deploy or update when new versions become available.
  • [DevOps] Check regularly for new releases (opens in a new tab). Re-deploy or update when new versions become available.

Authentication

  • [General] For username + password authentication:
    • Is the username unique? Avoid account sharing.
    • Is the password unique? Avoid password re-use.
    • Is the password strong? A random alphanumeric string with a minimum length of 16 characters is recommended.
  • [Fides Webserver Config] Set subject_identity_verification_required to true so that identity verification is required for privacy requests. This is set to false by default.

Authorization

  • [General] Apply the principle of least privilege when granting users roles and permissions.
  • [General] Regularly review user accounts and their privileges. Revoke access when it is no longer required. Reduce permissions if they are not needed.

Secrets Management

  • [General] Avoid the use of default fides values for secrets. Configure your own unique values instead.
  • [DevOps] If deploying Fides to a container orchestration platform, use the platform’s secrets management tools and apply best practices. For example, if using Kubernetes, apply Good practice for Kubernetes Secrets (opens in a new tab)
  • [DevOps] If feasible, use a secrets management system such as AWS Secrets Manager or Hashicorp Vault.

Encryption

Encryption in Transit

  • [DevOps] The Fides containers are designed to be deployed behind a reverse proxy for TLS termination (also known as SSL/TLS offload). When deploying Fides you must ensure that traffic is encrypted when transmitted on external networks by the following.
    • Deploy a reverse proxy for all inbound connections to the Fides containers. Commonly used methods include:
    • Deny all inbound traffic to Fides containers that does not pass via the proxy.
    • Redirect all inbound HTTP connection requests to HTTPS.
  • [DevOps] For all TLS connections, ensure that TLS v1.2 is the minimum TLS version in use. Disable support for older versions.

Encryption at Rest

  • [Fides Webserver Config] Generate a unique, random 32 character string for the AES app encryption key for use in your configuration. app_encryption_key in the [security] section of fides.toml - see Configuration for more info.
  • [Fides Webserver Config] Generate a unique, random 32 character string for the PGP user data encryption key for use in your configuration. encryption_key in the [user] section of fides.toml - see Configuration for more info.
  • [Fides Webserver Config] Configure a remote storage destination e.g. an S3 bucket with default server-side encryption (opens in a new tab). Do not store DSRs locally on the container’s ephemeral filesystem.

Application Traffic

  • [Fides Webserver Config] Allow only selected, trusted domains in the Access-Control-Allow-Origin header by configuring the value of cors_origins appropriately. The values will be unique to your deployment. Avoid the use of * wildcards. cors_origins in the [security] section of fides.toml - see Configuration for more info.
  • [Fides Webserver Config] Configure a sensible value for the Fides API rate-limit. Its value should be high enough not to block genuine traffic, but low enough to protect against automated attacks. Ethyca recommends starting with a high value before lowering it as you monitor the amount of traffic Fides receives. request_rate_limit in the [security] section of fides.toml - see Configuration for more info.
  • [Fides Webserver Config] Enable authentication for all Fides webserver API endpoints by setting env = prod in the [security] section of fides.toml If this is not explicitly enabled, then by default the Fides webserver allows all inbound traffic to all API endpoints and front-end paths. This includes potentially dangerous Fides API endpoints such as /api/v1/admin/db/reset. See Configuration for more info.

Reverse Proxy

Network Access / Firewalls

  • [DevOps] Configure your firewalls to:
    • Inbound
      • Allow inbound HTTPS (TCP/443) traffic to the reverse proxy from any source, including the public Internet. It’s also recommended to allow inbound HTTP (TCP/80) traffic to the reverse proxy from any source, but configure the reverse proxy to immediately redirect these connections to HTTPS.
      • Allow inbound HTTP traffic from the reverse proxy to the Fides webserver, typically on TCP/8080.
      • Allow inbound HTTP traffic from the reverse proxy to the Privacy Center UI container, typically on TCP/3000.
      • Implicitly deny all other inbound traffic.
    • Outbound
      • Allow outbound TCP and UDP traffic from the Fides containers to any destination.

Logging

  • [Fides Webserver Config] Set the minimum log level to INFO or higher. Do not set to DEBUG or TRACE.
  • [Fides Webserver Config] Do not set the FIDES__LOGGING_LOG_PII environment variable to True.
  • [Fides Webserver Config] Do not set the FIDES__DEV_MODE environment variable to True.
  • [DevOps] Incorporate Fides logging into your organization’s existing log management systems for appropriate monitoring, alerting, and reporting.

Hosted Fides Data Stores

Hosted Fides Database (PostgreSQL)

  • [Hosted Database Config] Use the latest minor version of a supported major release (opens in a new tab) of PostgreSQL.
  • [Hosted Database Config] Ensure that the database’s storage is encrypted at rest at the filesystem or block level using at least AES-256.
  • [Hosted Database Config] Create a dedicated user and strong password for the Fides Webserver user to authenticate to the database.
  • [Hosted Database Config] Allocate the minimum role attributes (opens in a new tab) needed to the Fides Webserver database user.
  • [Hosted Database Config] Configure the hosted database to allow encrypted connections only.
  • [DevOps] Allow-list network traffic to/from the Fides Webserver only. Implicitly deny all other traffic e.g. to the public Internet.

Hosted Fides Cache (Redis)

  • [Hosted Cache Config] Use a stable, supported version (opens in a new tab) of Redis.
  • [Hosted Cache Config] Use a dedicated hosted cache, do not share it with other applications.
    • Allow-list network traffic to/from the Fides Webserver only.
    • If the cache cannot be dedicated and must be shared with other applications, use Redis ACLs (opens in a new tab) to manage cache authorization.
  • [Hosted Cache Config] Use Redis TLS support (opens in a new tab) to only allow TLS/SSL encrypted connections. Note that this will have a performance impact (opens in a new tab).
  • [Fides Webserver Config] Configure the Fides Webserver to enable TLS/SSL for Redis traffic. ssl = True in the [redis] section of fides.toml - see Configuration for more info.
    • If the hosted cache supports it, also set ssl_cert_reqs = "required" in the same configuration section. Note that some cache platforms e.g. Elasticache may not support this.

Remote Storage Destination

Fides currently only supports S3 as a remote storage destination for DSRs.