<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Can we display key vault secret in Databricks notebook in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/can-we-display-key-vault-secret-in-databricks-notebook/m-p/102450#M41119</link>
    <description>&lt;P&gt;Thanks for this solution&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/79106"&gt;@daniel_sahal&lt;/a&gt;. It is simple yet effective&lt;/P&gt;</description>
    <pubDate>Wed, 18 Dec 2024 07:06:23 GMT</pubDate>
    <dc:creator>Shreyash_Gupta</dc:creator>
    <dc:date>2024-12-18T07:06:23Z</dc:date>
    <item>
      <title>Can we display key vault secret in Databricks notebook</title>
      <link>https://community.databricks.com/t5/data-engineering/can-we-display-key-vault-secret-in-databricks-notebook/m-p/102425#M41105</link>
      <description>&lt;P&gt;I am using databricks notebook and Azure key vault.&lt;/P&gt;&lt;P&gt;When I am using below function I am getting as output&amp;nbsp;&lt;STRONG&gt;[REDACTED].&lt;/STRONG&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;'&lt;EM&gt;dbutils.secrets.&lt;/EM&gt;&lt;/SPAN&gt;&lt;EM&gt;get(scope_name,secret_name)'&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;I want to know if there is any way to display the secret in databricks.&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 17 Dec 2024 21:07:25 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/can-we-display-key-vault-secret-in-databricks-notebook/m-p/102425#M41105</guid>
      <dc:creator>Shreyash_Gupta</dc:creator>
      <dc:date>2024-12-17T21:07:25Z</dc:date>
    </item>
    <item>
      <title>Re: Can we display key vault secret in Databricks notebook</title>
      <link>https://community.databricks.com/t5/data-engineering/can-we-display-key-vault-secret-in-databricks-notebook/m-p/102430#M41109</link>
      <description>&lt;P class="_1t7bu9h1 paragraph"&gt;&lt;SPAN&gt;In Databricks, secrets retrieved using &lt;CODE&gt;dbutils.secrets.get(scope_name, secret_name)&lt;/CODE&gt; are intentionally redacted and displayed as &lt;CODE&gt;[REDACTED]&lt;/CODE&gt; in notebook outputs to ensure sensitive information is not exposed. This behavior is a security feature to prevent accidental exposure of secrets.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="_1t7bu9h1 paragraph"&gt;&lt;SPAN&gt;If you need to verify the value of a secret, you should do so outside of the notebook environment, such as directly within the Azure Key Vault interface or using the Azure CLI.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Dec 2024 22:06:10 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/can-we-display-key-vault-secret-in-databricks-notebook/m-p/102430#M41109</guid>
      <dc:creator>Walter_C</dc:creator>
      <dc:date>2024-12-17T22:06:10Z</dc:date>
    </item>
    <item>
      <title>Re: Can we display key vault secret in Databricks notebook</title>
      <link>https://community.databricks.com/t5/data-engineering/can-we-display-key-vault-secret-in-databricks-notebook/m-p/102449#M41118</link>
      <description>&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/112896"&gt;@Shreyash_Gupta&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;You can simply iterate over each letter of the secret and print it.&lt;BR /&gt;Something like this:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;for letter in dbutils.secrets.get(scope_name,secret_name):
   print(letter)&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 18 Dec 2024 06:58:25 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/can-we-display-key-vault-secret-in-databricks-notebook/m-p/102449#M41118</guid>
      <dc:creator>daniel_sahal</dc:creator>
      <dc:date>2024-12-18T06:58:25Z</dc:date>
    </item>
    <item>
      <title>Re: Can we display key vault secret in Databricks notebook</title>
      <link>https://community.databricks.com/t5/data-engineering/can-we-display-key-vault-secret-in-databricks-notebook/m-p/102450#M41119</link>
      <description>&lt;P&gt;Thanks for this solution&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/79106"&gt;@daniel_sahal&lt;/a&gt;. It is simple yet effective&lt;/P&gt;</description>
      <pubDate>Wed, 18 Dec 2024 07:06:23 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/can-we-display-key-vault-secret-in-databricks-notebook/m-p/102450#M41119</guid>
      <dc:creator>Shreyash_Gupta</dc:creator>
      <dc:date>2024-12-18T07:06:23Z</dc:date>
    </item>
    <item>
      <title>Re: Can we display key vault secret in Databricks notebook</title>
      <link>https://community.databricks.com/t5/data-engineering/can-we-display-key-vault-secret-in-databricks-notebook/m-p/102451#M41120</link>
      <description>&lt;P&gt;I completely understand the security perspective. Just wanted to know if there is any way to do it or not.&lt;BR /&gt;Thankyou for your response.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Dec 2024 07:09:01 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/can-we-display-key-vault-secret-in-databricks-notebook/m-p/102451#M41120</guid>
      <dc:creator>Shreyash_Gupta</dc:creator>
      <dc:date>2024-12-18T07:09:01Z</dc:date>
    </item>
  </channel>
</rss>

