-
Notifications
You must be signed in to change notification settings - Fork 151
/
Copy pathvariables.tf
49 lines (39 loc) · 1.04 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
variable "subscription_id" {
type = string
description = "Azure Subscription ID to deploy the workspace into"
}
variable "rglocation" {
type = string
default = "southeastasia"
description = "Location of resource group to create"
}
variable "dbfs_prefix" {
type = string
default = "dbfs"
description = "Name prefix for DBFS Root Storage account"
}
variable "node_type" {
type = string
default = "Standard_DS3_v2"
description = "Node type for created cluster"
}
variable "workspace_prefix" {
type = string
default = "adb"
description = "Name prefix for Azure Databricks workspace"
}
variable "global_auto_termination_minute" {
type = number
default = 30
description = "Auto-termination time for created cluster"
}
variable "cidr" {
type = string
default = "10.179.0.0/20"
description = "Network range for created VNet"
}
variable "tags" {
type = map(string)
description = "Optional tags to add to resources"
default = {}
}