Can someone tell me what the list of secrets are f...
# ory-selfhosting
p
Can someone tell me what the list of secrets are for in the Kratos helm values? Do there need to be a specific number of them?
p
Hi @plain-lunch-50969 According to the configuration reference. https://www.ory.sh/docs/kratos/reference/configuration
Copy code
## secrets ##
#
secrets:
  
  ## Signing Keys for Cookies ##
  #
  # The first secret in the array is used for encrypting cookies while all other keys are used to decrypt older cookies that were signed with that old secret.
  #
  # Set this value using environment variables on
  # - Linux/macOS:
  #    $ export SECRETS_COOKIE=<value>
  # - Windows Command Line (CMD):
  #    > set SECRETS_COOKIE=<value>
  #
  cookie:
    - ipsumipsumipsumi

  ## Secrets to use for encryption by cipher ##
  #
  # The first secret in the array is used for encryption data while all other keys are used to decrypt older data that were signed with.
  #
  # Set this value using environment variables on
  # - Linux/macOS:
  #    $ export SECRETS_CIPHER=<value>
  # - Windows Command Line (CMD):
  #    > set SECRETS_CIPHER=<value>
  #
  cipher:
    - ipsumipsumipsumipsumipsumipsumip

  ## Default Encryption Signing Secrets ##
  #
  # The first secret in the array is used for signing and encrypting things while all other keys are used to verify and decrypt older things that were signed with that old secret.
  #
  # Set this value using environment variables on
  # - Linux/macOS:
  #    $ export SECRETS_DEFAULT=<value>
  # - Windows Command Line (CMD):
  #    > set SECRETS_DEFAULT=<value>
  #
  default:
    - ipsumipsumipsum
🙏 1