Created
January 18, 2024 14:22
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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