The secrets can be Databricks backed or Azure Key Vault backed.
Both can be created by using the databricks-cli tool, and for the Azure Key Vault backed secrets a hidden web ui can be accessed for you Databricks instance [ https://<databricks-instance>#secrets/createScope
].
https://learn.microsoft.com/en-us/azure/databricks/security/secrets/secret-scopes
Use dbutils.secrets.get
to access the secret from the notebook.
secret = dbutils.secrets.get(scope = "<scope-name>", key = "<secret-name>")