Even though secrets are for masking confidential information, I need to see the value of the secret for using it outside Databricks. When I simply print the secret it shows [REDACTED].
print(dbutils.secrets.get(scope="myScope", key="myKey"))
Out:
[REDACTED]
How can I print the secret value?