Reputation: 27456
I turned on Unity Catalog for our workspace. Now a job cluster has an access mode setting. (docs) I can manually change this setting on the UI:
But how do I control this setting when creating the job through databricks jobs create --json-file X.json
?
Upvotes: 5
Views: 2641
Reputation: 87069
You need to specify the data_security_mode
with value "NONE"
in the cluster definition (for some reason it's missing from API docs, but you can find details in the Terraform provider docs). But really it should be the default value, so you don't need to explicitly specify it.
Upvotes: 5