Skip to content

Instantly share code, notes, and snippets.

@amalgjose
Created January 18, 2024 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amalgjose/895cd0c6efb1f7518d5a7d541b102307 to your computer and use it in GitHub Desktop.
Save amalgjose/895cd0c6efb1f7518d5a7d541b102307 to your computer and use it in GitHub Desktop.
Simple code snippet to print REDACTED secret in plain text within a Databricks notebook
value = dbutils.secrets.get(scope="myScope", key="myKey")
for char in value:
print(char, end='\u200B')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment