Skip to content

Commit d08ae38

Browse files
Leonid_Frolov1Leonid_Frolov1
authored andcommitted
feat: added secret names default values and made mount disabled by default
1 parent 7336b73 commit d08ae38

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

variables.tf

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,13 @@ variable "sql_endpoint" {
7979
variable "sp_client_id_secret_name" {
8080
type = string
8181
description = "The name of Azure Key Vault secret that contains ClientID of Service Principal to access in Azure Key Vault"
82+
default = ""
8283
}
8384

8485
variable "sp_key_secret_name" {
8586
type = string
8687
description = "The name of Azure Key Vault secret that contains client secret of Service Principal to access in Azure Key Vault"
88+
default = ""
8789
}
8890

8991
# Secret Scope variables
@@ -213,5 +215,5 @@ variable "mount_cluster_name" {
213215
variable "mount_enabled" {
214216
type = bool
215217
description = "Boolean flag to enable ADLS mount to Databricks"
216-
default = true
218+
default = false
217219
}

0 commit comments

Comments
 (0)