Not able to edit_mode UI_LOCKED to EDITABLE in bundle deployment for development mode

kishanmaladkar
New Contributor II

The edit_mode for Databricks jobs cannot be overridden using the bundle. 

Based on the jobs REST API docs, there is a functionality to set this parameter but in the bundle docs, it's not available. 

How can I use this in the bundle to override the parameters? Also, note that this job calls other jobs - this is an E2E workflow where training, scoring, and validation jobs are called inside the workflow. 

Below is the config of the job. 

 

resources:
  jobs:
    <job_name>:
      name: ...
      job_clusters:
        - job_cluster_key: ...
      max_concurrent_runs: 10
      tasks:
        - task_key: ...
        - task_key: ...
        - task_key: ...
          run_job_task:
            job_id: ...
        - task_key: ...
        - task_key: ...
          run_job_task:
            job_id:  ...
            job_parameters:
              ...
      git_source:
        git_url: ${var.git_repo}
        git_provider: gitHubEnterprise
        git_branch: ${var.git_branch}
      queue:
        enabled: true
      parameters:
        - name: ...
          default: ...
        - name: ...
          default: ...
        ...
      tags:
        project: ...
        stage: ${bundle.target}
        team: ...
      edit_mode: EDITABLE