Environment Variables
Variable | Description |
---|---|
KEY_MANAGER_HOST | Specifies the IP address or hostname of the key manager. |
KEY_MANAGER_PORT | Specifies the web port of the key manager. The default value is 443 . |
CRDP_PORT | Specifies the port on which CRDP will come up. The default value is 8090 . |
REGISTRATION_TOKEN | Specifies the token required to register CRDP client on the key manager. |
SERVER_MODE | Specifies the mode in which the customer application will communicate with CRDP. Possible options: — no-tls: Connection is established using the TCP protocol. — tls-cert-opt: Connection is established using the TLS protocol. However, client authentication is optional. — tls-cert: Connection is established using the TLS protocol. CRDP will validate the client certificate with the provided TRUSTED_CA . |
MINIMUM_TLS_VERSION | Specifies the tls version to be used by CRDP. Possible Options — tlsv1.2 (default) — tlsv1.3 If MINIMUM_TLS_VERSION is not provided, the default tls version tlsv1.2 is used. |
CERT_VALUE | Specifies the server certificate used by the CRDP. Required only when SERVER_MODE is tls-cert and tls-cert-opt . The input format is PEM. |
KEY_VALUE | Specifies the key associated with the certificate. Required only when SERVER_MODE is tls-cert and tls-cert-opt . The input format is PEM. |
TRUSTED_CA | Specifies the CA used by the CRDP to verify the client certificate. Required only when SERVER_MODE is tls-cert . The input format is PEM. |