<?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: Job Owner Changes in Asset Bundle in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/job-owner-changes-in-asset-bundle/m-p/131982#M49310</link>
    <description>&lt;P&gt;Could you please add an example of this for me, please?&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face_with_sweat:"&gt;😅&lt;/span&gt;&lt;/P&gt;&lt;P&gt;```yml&lt;BR /&gt;targets:&lt;BR /&gt;&amp;nbsp; prod:&lt;BR /&gt;&amp;nbsp; &amp;nbsp; mode: production&lt;BR /&gt;&amp;nbsp; &amp;nbsp; permissions:&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; - service_principal_name: asdf1234&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; level: IS_OWNER&lt;BR /&gt;```&lt;/P&gt;&lt;P&gt;Error: invalid permission level: IS_OWNER, allowed values: [CAN_MANAGE, CAN_VIEW, CAN_RUN]&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 15 Sep 2025 12:50:53 GMT</pubDate>
    <dc:creator>T0M</dc:creator>
    <dc:date>2025-09-15T12:50:53Z</dc:date>
    <item>
      <title>Job Owner Changes in Asset Bundle</title>
      <link>https://community.databricks.com/t5/data-engineering/job-owner-changes-in-asset-bundle/m-p/128484#M48254</link>
      <description>&lt;P&gt;When I deploy a fresh job, I'm set as owner, which makes sense because I'm creating it.&lt;BR /&gt;Then at some point, the owner switches to a service principal. This is strange. I believe it happens when a scheduled job triggers.&lt;/P&gt;&lt;P&gt;Can job owners change?&lt;/P&gt;</description>
      <pubDate>Thu, 14 Aug 2025 20:21:36 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/job-owner-changes-in-asset-bundle/m-p/128484#M48254</guid>
      <dc:creator>nickscip</dc:creator>
      <dc:date>2025-08-14T20:21:36Z</dc:date>
    </item>
    <item>
      <title>Re: Job Owner Changes in Asset Bundle</title>
      <link>https://community.databricks.com/t5/data-engineering/job-owner-changes-in-asset-bundle/m-p/128526#M48274</link>
      <description>&lt;P&gt;If you see the job owner changing after an Asset Bundle deploy, it’s because ownership defaults to the principal that performs the deployment (the PAT/SPN used by the CLI). To keep ownership stable, deploy with a dedicated service principal and set it explicitly in the bundle: add a permissions block on the job giving that SPN (or a group) the role IS_OWNER, and use run_as so the job executes under the same identity. Avoid ad-hoc edits in the UI—saving changes there will flip ownership to the editor. In short: pin owner via permissions.IS_OWNER, run the job via run_as, and perform all deployments with the same SPN to prevent owner drift.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Aug 2025 13:38:11 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/job-owner-changes-in-asset-bundle/m-p/128526#M48274</guid>
      <dc:creator>WiliamRosa</dc:creator>
      <dc:date>2025-08-15T13:38:11Z</dc:date>
    </item>
    <item>
      <title>Re: Job Owner Changes in Asset Bundle</title>
      <link>https://community.databricks.com/t5/data-engineering/job-owner-changes-in-asset-bundle/m-p/131982#M49310</link>
      <description>&lt;P&gt;Could you please add an example of this for me, please?&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face_with_sweat:"&gt;😅&lt;/span&gt;&lt;/P&gt;&lt;P&gt;```yml&lt;BR /&gt;targets:&lt;BR /&gt;&amp;nbsp; prod:&lt;BR /&gt;&amp;nbsp; &amp;nbsp; mode: production&lt;BR /&gt;&amp;nbsp; &amp;nbsp; permissions:&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; - service_principal_name: asdf1234&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; level: IS_OWNER&lt;BR /&gt;```&lt;/P&gt;&lt;P&gt;Error: invalid permission level: IS_OWNER, allowed values: [CAN_MANAGE, CAN_VIEW, CAN_RUN]&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Sep 2025 12:50:53 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/job-owner-changes-in-asset-bundle/m-p/131982#M49310</guid>
      <dc:creator>T0M</dc:creator>
      <dc:date>2025-09-15T12:50:53Z</dc:date>
    </item>
    <item>
      <title>Re: Job Owner Changes in Asset Bundle</title>
      <link>https://community.databricks.com/t5/data-engineering/job-owner-changes-in-asset-bundle/m-p/132505#M49515</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/109462"&gt;@T0M&lt;/a&gt;, how are you doing?&lt;/P&gt;&lt;P&gt;You’re right about the statuses at the level above the job; however, my reference to IS_OWNER comes from the job-level statuses, as shown below:&lt;/P&gt;&lt;P&gt;IS_OWNER exists and is valid for resource-level permissions (e.g., inside resources.jobs.&amp;lt;id&amp;gt;.permissions). The docs list the allowed levels per resource type and, for Jobs, they include IS_OWNER.&lt;/P&gt;&lt;P&gt;At the bundle top-level permissions block (either the root permissions or targets.&amp;lt;env&amp;gt;.permissions), the only allowed values are CAN_VIEW, CAN_MANAGE, and CAN_RUN — it does not accept IS_OWNER&lt;BR /&gt;&lt;BR /&gt;E&lt;SPAN&gt;xample:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;bundle:
  name: my-bundle

resources:
  jobs:
    my-job:
      name: My Job
      permissions:
        - service_principal_name: 00000000-0000-0000-0000-000000000000
          level: IS_OWNER            # allowed on the Job resource

targets:
  prod:
    permissions:
      - group_name: data-engineering
        level: CAN_VIEW              #top/targets only accept VIEW/MANAGE/RUN
    run_as:
      service_principal_name: 00000000-0000-0000-0000-000000000000&lt;/LI-CODE&gt;&lt;P&gt;&lt;SPAN&gt;The documentation below also includes some YAML examples:&lt;BR /&gt;&lt;A href="https://learn.microsoft.com/en-us/azure/databricks/dev-tools/bundles/permissions" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/azure/databricks/dev-tools/bundles/permissions&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Sep 2025 21:51:36 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/job-owner-changes-in-asset-bundle/m-p/132505#M49515</guid>
      <dc:creator>WiliamRosa</dc:creator>
      <dc:date>2025-09-18T21:51:36Z</dc:date>
    </item>
  </channel>
</rss>

