forked from databricks/terraform-databricks-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
67 lines (55 loc) · 1.45 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
variable "overwatch_ws_name" {
type = string
description = "Overwatch workspace name"
}
variable "rg_name" {
type = string
description = "Resource group name"
}
variable "overwatch_spn_app_id" {
type = string
description = "Azure SPN ID used to create the mount points"
}
variable "tenant_id" {
type = string
description = "Azure Tenant ID"
}
variable "ow_sa_name" {
type = string
description = "The name of the Overwatch ETL storage account"
}
variable "akv_name" {
type = string
description = "Azure Key-Vault name"
}
variable "databricks_secret_scope_name" {
type = string
description = "Databricks secret scope name (backed by Azure Key-Vault)"
}
variable "overwatch_job_notification_email"{
default = "[email protected]"
description = "Overwatch Job Notification Email"
}
variable "cron_job_schedule" {
type = string
default = "0 0 8 * * ?"
description = "Cron expression to schedule the Overwatch Job"
}
variable "cron_timezone_id" {
type = string
default = "Europe/Brussels"
description = "Timezone for the cron schedule"
}
variable "overwatch_version" {
type = string
description = "Overwatch library maven version"
default = "overwatch_2.12:0.7.1.0"
}
variable "random_string" {
type = string
description = "Random string used as a suffix for the resources names"
}
variable "latest_dbr_lts" {
type = string
description = "Latest DBR LTS version"
}