<?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 databricks OAuth is not supported for this host in Administration &amp; Architecture</title>
    <link>https://community.databricks.com/t5/administration-architecture/databricks-oauth-is-not-supported-for-this-host/m-p/42898#M344</link>
    <description>&lt;P&gt;I'm trying to deploy using Databricks Asset Bundles via an Azure DevOps pipeline. I keep getting this error when trying to use oauth:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Error: default auth: oauth-m2m: oidc: databricks OAuth is not supported for this host. Config: host=https://&amp;lt;workspace&amp;gt;.azuredatabricks.net, client_id=***, client_secret=***. Env: DATABRICKS_HOST, DATABRICKS_CLIENT_ID, DATABRICKS_CLIENT_SECRET
##[error]Bash exited with code '1'.&lt;/LI-CODE&gt;&lt;P&gt;The pipeline is nothing complicated:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;trigger:
- development

pool:
  vmImage: ubuntu-latest

variables:
- group: "DevOps Service Credentials Databricks"

stages:
- stage: "Development_Deploy"
  jobs:
  - job: "Deploy_Bundle"
    steps:
    - script: |
        curl -fsSL https://raw.githubusercontent.com/databricks/setup-cli/main/install.sh | sh
      displayName: 'Install Databricks CLI'
    - script: |
        databricks bundle deploy
      displayName: 'Deploy Databricks Asset Bundle'
      env:
        DATABRICKS_HOST: https://&amp;lt;workspace&amp;gt;.azuredatabricks.net
        DATABRICKS_CLIENT_ID: $(databricksdevopsdeployment-clientid)
        DATABRICKS_CLIENT_SECRET: $(databricksdevopsdeployment-clientsecret)&lt;/LI-CODE&gt;&lt;P&gt;Any ideas? What am I doing wrong?&lt;/P&gt;</description>
    <pubDate>Wed, 30 Aug 2023 18:56:31 GMT</pubDate>
    <dc:creator>bradleyjamrozik</dc:creator>
    <dc:date>2023-08-30T18:56:31Z</dc:date>
    <item>
      <title>databricks OAuth is not supported for this host</title>
      <link>https://community.databricks.com/t5/administration-architecture/databricks-oauth-is-not-supported-for-this-host/m-p/42898#M344</link>
      <description>&lt;P&gt;I'm trying to deploy using Databricks Asset Bundles via an Azure DevOps pipeline. I keep getting this error when trying to use oauth:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Error: default auth: oauth-m2m: oidc: databricks OAuth is not supported for this host. Config: host=https://&amp;lt;workspace&amp;gt;.azuredatabricks.net, client_id=***, client_secret=***. Env: DATABRICKS_HOST, DATABRICKS_CLIENT_ID, DATABRICKS_CLIENT_SECRET
##[error]Bash exited with code '1'.&lt;/LI-CODE&gt;&lt;P&gt;The pipeline is nothing complicated:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;trigger:
- development

pool:
  vmImage: ubuntu-latest

variables:
- group: "DevOps Service Credentials Databricks"

stages:
- stage: "Development_Deploy"
  jobs:
  - job: "Deploy_Bundle"
    steps:
    - script: |
        curl -fsSL https://raw.githubusercontent.com/databricks/setup-cli/main/install.sh | sh
      displayName: 'Install Databricks CLI'
    - script: |
        databricks bundle deploy
      displayName: 'Deploy Databricks Asset Bundle'
      env:
        DATABRICKS_HOST: https://&amp;lt;workspace&amp;gt;.azuredatabricks.net
        DATABRICKS_CLIENT_ID: $(databricksdevopsdeployment-clientid)
        DATABRICKS_CLIENT_SECRET: $(databricksdevopsdeployment-clientsecret)&lt;/LI-CODE&gt;&lt;P&gt;Any ideas? What am I doing wrong?&lt;/P&gt;</description>
      <pubDate>Wed, 30 Aug 2023 18:56:31 GMT</pubDate>
      <guid>https://community.databricks.com/t5/administration-architecture/databricks-oauth-is-not-supported-for-this-host/m-p/42898#M344</guid>
      <dc:creator>bradleyjamrozik</dc:creator>
      <dc:date>2023-08-30T18:56:31Z</dc:date>
    </item>
    <item>
      <title>Re: databricks OAuth is not supported for this host</title>
      <link>https://community.databricks.com/t5/administration-architecture/databricks-oauth-is-not-supported-for-this-host/m-p/42994#M348</link>
      <description>&lt;P&gt;I can confirm that the host/clientid/clientsecret are correct as I can use the same variables with az login and it connects to the workspace successfully; I just get a different error of "cannot create default credentials" for the a job after it successfully uploads the bundle files. Is there a setting I need to check to enable oauth for a given workspace?&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2023 14:04:38 GMT</pubDate>
      <guid>https://community.databricks.com/t5/administration-architecture/databricks-oauth-is-not-supported-for-this-host/m-p/42994#M348</guid>
      <dc:creator>bradleyjamrozik</dc:creator>
      <dc:date>2023-08-31T14:04:38Z</dc:date>
    </item>
    <item>
      <title>Re: databricks OAuth is not supported for this host</title>
      <link>https://community.databricks.com/t5/administration-architecture/databricks-oauth-is-not-supported-for-this-host/m-p/44460#M387</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/85082"&gt;@bradleyjamrozik&lt;/a&gt;, thank you for posting your question. You will need to use &lt;STRONG&gt;ARM_&lt;/STRONG&gt; variables to make it work&lt;/P&gt;
&lt;P&gt;Specifically&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;ARM_CLIENT_ID
ARM_TENANT_ID
ARM_CLIENT_SECRET&lt;/LI-CODE&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/azure/databricks/dev-tools/auth#environment-3" target="_blank"&gt;https://learn.microsoft.com/en-us/azure/databricks/dev-tools/auth#environment-3&lt;/A&gt;&amp;nbsp;for reference,&lt;/P&gt;
&lt;P&gt;Hope that helps!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2023 10:59:32 GMT</pubDate>
      <guid>https://community.databricks.com/t5/administration-architecture/databricks-oauth-is-not-supported-for-this-host/m-p/44460#M387</guid>
      <dc:creator>saadansari-db</dc:creator>
      <dc:date>2023-09-12T10:59:32Z</dc:date>
    </item>
    <item>
      <title>Re: databricks OAuth is not supported for this host</title>
      <link>https://community.databricks.com/t5/administration-architecture/databricks-oauth-is-not-supported-for-this-host/m-p/44604#M391</link>
      <description>&lt;P&gt;That did it, thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 13 Sep 2023 15:25:02 GMT</pubDate>
      <guid>https://community.databricks.com/t5/administration-architecture/databricks-oauth-is-not-supported-for-this-host/m-p/44604#M391</guid>
      <dc:creator>bradleyjamrozik</dc:creator>
      <dc:date>2023-09-13T15:25:02Z</dc:date>
    </item>
    <item>
      <title>Re: databricks OAuth is not supported for this host</title>
      <link>https://community.databricks.com/t5/administration-architecture/databricks-oauth-is-not-supported-for-this-host/m-p/68592#M1181</link>
      <description>&lt;P&gt;So in this case the&amp;nbsp;&amp;nbsp;&lt;STRONG&gt;Azure managed identities authentication&amp;nbsp;&lt;/STRONG&gt;needs to be used?&lt;/P&gt;</description>
      <pubDate>Wed, 08 May 2024 14:17:40 GMT</pubDate>
      <guid>https://community.databricks.com/t5/administration-architecture/databricks-oauth-is-not-supported-for-this-host/m-p/68592#M1181</guid>
      <dc:creator>tariq</dc:creator>
      <dc:date>2024-05-08T14:17:40Z</dc:date>
    </item>
    <item>
      <title>Re: databricks OAuth is not supported for this host</title>
      <link>https://community.databricks.com/t5/administration-architecture/databricks-oauth-is-not-supported-for-this-host/m-p/151802#M5059</link>
      <description>&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/68169"&gt;@saadansari-db&lt;/a&gt;&amp;nbsp;, do we need a&amp;nbsp;&lt;SPAN&gt;Azure Databricks managed service principal or Microsoft Entra ID managed service principal to run bundles deployment?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2026 10:21:28 GMT</pubDate>
      <guid>https://community.databricks.com/t5/administration-architecture/databricks-oauth-is-not-supported-for-this-host/m-p/151802#M5059</guid>
      <dc:creator>fhashim</dc:creator>
      <dc:date>2026-03-24T10:21:28Z</dc:date>
    </item>
  </channel>
</rss>

