-
Notifications
You must be signed in to change notification settings - Fork 151
/
Copy pathvariables.tf
64 lines (53 loc) · 1.54 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
variable "subscription_id" {
type = string
description = "Azure Subscription ID to deploy the workspace into"
}
variable "hubcidr" {
description = "IP range for creaiton of the Spoke VNet"
type = string
default = "10.178.0.0/20"
}
variable "spokecidr" {
description = "IP range for creaiton of the Hub VNet"
type = string
default = "10.179.0.0/20"
}
variable "rglocation" {
description = "Location of resource group"
type = string
}
variable "metastore" {
description = "List of FQDNs for Azure Databricks Metastore databases"
type = list(string)
}
variable "scc_relay" {
description = "List of FQDNs for Azure Databricks Secure Cluster Connectivity relay"
type = list(string)
}
variable "webapp_ips" {
description = "List of IP ranges for Azure Databricks Webapp"
type = list(string)
}
variable "eventhubs" {
description = "List of FQDNs for Azure Databricks EventHubs traffic"
type = list(string)
}
variable "dbfs_prefix" {
description = "Prefix for DBFS storage account name"
type = string
default = "dbfs"
}
variable "workspace_prefix" {
description = "Prefix for workspace name"
type = string
default = "adb"
}
variable "firewallfqdn" {
type = list(any)
description = "List of domains names to put into application rules for handling of HTTPS traffic (Databricks storage accounts, etc.)"
}
variable "tags" {
description = "Additional tags to add to created resources"
default = {}
type = map(string)
}