Security

DC/OS NiFi Service encryption, authentication, and authorization

DC/OS NiFi Security

The DC/OS NiFi service supports DC/OS NiFi’s native transport encryption, authentication, and authorization mechanisms. The service provides automation and orchestration to simplify the usage of these important features.

A good overview of these features can be found here.

Transport Encryption and Kerberos Authentication

With transport encryption enabled, DC/OS NiFi will automatically deploy all nodes with the correct configuration to encrypt communication via SSL. The nodes will communicate securely between themselves using SSL. SSL authentication requires that all DC/OS NiFi Nodes present a valid certificate from which their identity can be derived for communicating between themselves. DC/OS NiFi uses the CN of the SSL certificate as the principal for a given Node. For example, CN=nifi-0-node.demonifi, O=“Mesosphere, Inc”, L=San Francisco, ST=CA, C=US.

The service uses the DC/OS CA to generate the SSL artifacts that it uses to secure the service. Any client that trusts the DC/OS CA will consider the service’s certificates valid.

NOTE: Enabling transport encryption is required to use SSL authentication for authentication, but is optional for Kerberos authentication.

Prerequisites

  • A DC/OS Service Account with a secret stored in the DC/OS Secret Store.
  • DC/OS superuser permissions for modifying the permissions of the Service Account.

Configure Transport Encryption

NOTE: A complete guide to Configuring DC/OS Access for DC/OS NiFi can be found below.

Set up the Service Account

Grant the service account the correct permissions.

In DC/OS 1.10, the required permission is dcos:superuser full.

curl -k -v $(dcos config show core.dcos_url)/ca/dcos-ca.crt -o ../dcos-ca.crt
export LC_ALL=C.UTF-8
export LANG=C.UTF-8
dcos package install dcos-enterprise-cli
dcos security org service-accounts keypair nifi-private-key.pem nifi-public-key.pem
dcos security org service-accounts create -p nifi-public-key.pem -d "dcos_nifi" <service name>
dcos security secrets create-sa-secret --strict nifi-private-key.pem <service name> <service name secret>
dcos security org users grant <service name> dcos:superuser full --description "grant permission to superuser"

where is the name of the service to be installed.

Transport Encryption for Clients

Transport Encryption for Clients

With Transport Encryption enabled, service clients will need to be configured to use the DC/OS CA bundle to verify the connections they make to the service. Consult your client’s documentation for trusting a CA and configure your client appropriately.

Authentication

DC/OS NiFi supports two authentication mechanisms, SSL and Kerberos. The two are supported independently and may not be combined. If both SSL and Kerberos authentication are enabled, the service will use Kerberos authentication.

NOTE: Kerberos authentication can, however, be combined with transport encryption.

CA based authentication between nodes

DC/OS NiFi requires certificate based authentication between nodes. DC/OS NiFi uses the CN of the SSL certificate as the principal for a given Node. For example, CN=nifi-0-node.demonifi, O=“Mesosphere, Inc”, L=San Francisco, ST=CA, C=US.

Kerberos Authentication for End Users

Kerberos authentication relies on a central authority to verify that DC/OS NiFi clients are who they say they are. DC/OS NiFi integrates with your existing Kerberos infrastructure to verify the identity of clients.

Prerequisites

  • The hostname and port of a Key Distribution Center (KDC) reachable from your DC/OS cluster
  • Sufficient access to the KDC to create Kerberos principals
  • Sufficient access to the KDC to retrieve a keytab for the generated principals
  • The DC/OS Enterprise CLI
  • DC/OS Superuser permissions

Configure Kerberos Authentication

1. Create principals

The DC/OS NiFi service requires a Kerberos principal for the service principal and user principal. Each principal must be of the form

nifiprincipal@<service realm>
nifiadmin@<service realm>

2. Place Service Keytab in DC/OS Secret Store

The DC/OS NiFi service uses a keytab containing the above service and user principals (service keytab). After creating the principals above, generate the service keytab, making sure to include all the node principals. This will be stored as a secret in the DC/OS Secret Store by name __dcos_base64__secret_name. The DC/OS security modules will handle decoding the file when it is used by the service.

Create secret named “nifiadmin_kerberos_secret” for password of Kerberos User Principal: nifiadmin

Documentation for adding a file to the secret store can be found here.

NOTE: Secrets access is controlled by DC/OS Spaces, which function like namespaces. Any secret in the same DC/OS Space as the service will be accessible by the service.

3. Install the Service

Install the DC/OS NiFi service with the following options in addition to your own:

{
 "service": {
  "name": "/demo/nifi",
   "security": {
   "kerberos": {
        "kdc": {
       "hostname": "kdc.marathon.autoip.dcos.thisdcos.directory",
       "port": 2500
     },
     "keytab_secret": "__dcos_base64___keytab",
     "primary": "nifi",
     "realm": "LOCAL",
     "service_principal": "nifiprincipal@LOCAL",
     "user_principal": "nifiadmin@LOCAL",
     "user_principal_keytab": "nifiadmin_kerberos_secret"
   },
   "kerberos_tls": {
     "enable": true
   }
 },
 "service_account": "dcos_nifi",
 "service_account_secret": "dcos_nifi_secret",
 "virtual_network_enabled": true,
 "virtual_network_name": "dcos",
 }
}

Configuring DC/OS Access for DC/OS NiFi

This topic describes how to configure DC/OS access for DC/OS NiFi. Depending on your security mode, DC/OS NiFi requires service authentication for access to DC/OS.

Security Mode Service Account
Disabled Not available
Permissive Optional
Strict Required

If you install a service in permissive mode and do not specify a service account, Metronome and Marathon will act as if requests made by this service are made by an account with the superuser permission.

Prerequisites:

Create a Key Pair

In this step, a 2048-bit RSA public-private key pair is created using the DC/OS Enterprise CLI.

  1. Create a public-private key pair and save each value into a separate file within the current directory.

    dcos security org service-accounts keypair nifi-private-key.pem nifi-public-key.pem
    
  2. You can use the DC/OS Secret Store to secure the key pair.

Create a Service Account

  1. From a terminal prompt, create a new service account () containing the public key (.pem).

    dcos security org service-accounts create -p nifi-public-key.pem -d "dcos_nifi" <service name>
    
  2. You can verify your new service account using the following command.

    dcos security org service-accounts show <service-account-id>
    

Create a Secret

Create a secret nifi/<secret-name> with your service account <service-account-id> and private key specified (.pem).

If you store your secret in a path that matches the service name (for example, if a service name and secret path are both named nifi), then only the service named nifi can access it.

Permissive

dcos security secrets create-sa-secret nifi-private-key.pem <service name> <service name secret>

Strict

dcos security secrets create-sa-secret --strict nifi-private-key.pem <service name> <service name secret>

You can list the secrets with this command:

dcos security secrets list /

Assign Permissions

dcos security org users grant <service name> dcos:superuser full --description "grant permission to superuser"