You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| <a name="input_pat_token_lifetime_seconds"></a> [pat\_token\_lifetime\_seconds](#input\_pat\_token\_lifetime\_seconds) | The lifetime of the token, in seconds. If no lifetime is specified, the token remains valid indefinitely | `number` | 315569520 | no |
339
340
| <a name="input_mount_adls_passthrough"></a> [mount\_adls\_passthrough](#input\_mount\_adls\_passthrough) | Boolean flag to use mount options for credentals passthrough. Should be used with mount_cluster_name, specified cluster should have option cluster_conf_passthrought == true | `bool` | false | no |
340
341
| <a name="input_mount_cluster_name"></a> [mount\_cluster\_name](#input\_mount\_cluster\_name) | Name of the cluster that will be used during storage mounting. If mount_adls_passthrough == true, cluster should also have option cluster_conf_passthrought == true. When mount_cluster_name is not specified, it will create the smallest possible cluster in the default availability zone with name equal to or starting with terraform-mount for the shortest possible amount of time. | `string` | null | no |
342
+
| <aname="input_key_vault_secret_scope"></a> [key\_vault\_secret\_scope](#input\_key\_vault\_secret\_scope)| Object with Azure Key Vault parameters required for creation of Azure-backed Databricks Secret scope. | <pre>object({<br> key_vault_id = string<br> dns_name = string<br>})<br></pre> | <pre>{<br> key_vault_id = null<br> dns_name = null<br>}</pre> | no |
description="Name of the cluster that will be used during storage mounting. If mount_adls_passthrough == true, cluster should also have option cluster_conf_passthrought == true"
266
266
default=null
267
267
}
268
+
269
+
variable"key_vault_secret_scope" {
270
+
type=object({
271
+
key_vault_id =string
272
+
dns_name =string
273
+
})
274
+
description="Object with Azure Key Vault parameters required for creation of Azure-backed Databricks Secret scope"
0 commit comments