Skip to content

Vault


Vault secures, stores, and tightly controls access to tokens, passwords, certificates, API keys, and other secrets in modern computing. It manages the user credentials for the backend systems.


TLS Configuration

  1. Open the vault configuration file:

    • C:\ProgramData\SEAL Systems\infrastructure\config\vault.hcl
  2. Insert or change the following lines:

      listener "tcp" {
        tls_disable = false
        tls_cert_file = "C:\ProgramData\SEAL Systems\infrastructure\config\tls\cert.pem"
        tls_key_file = "C:\ProgramData\SEAL Systems\infrastructure\config\tls\key.pem"
      }
    

    Hint - CA certificate

    To configure the listener to use a CA certificate, concatenate the primary certificate and the CA certificate together with a text editor or on the command line.


Back to top