How to provide DB credentials to temporal in production?

Hi Experts,

Currently, for Temporal helm charts, for connecting to a postgresql DB, following is the sample provided:

server:
  config:
    persistence:
      default:
        driver: "sql"

        sql:
          driver: "postgres"
          host: _HOST_
          port: 5432
          database: temporal
          user: _USERNAME_
          password: _PASSWORD_
          maxConns: 20
          maxConnLifetime: "1h"

Since these credentails would be strictly confidential, is there a better way to provide these credentials to temporal in a UAT or Production environment?