-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
61 lines (51 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
variable "project" {
type = string
description = "Project name"
}
variable "env" {
type = string
description = "Environment name"
}
variable "resource_group" {
type = string
description = "The name of the resource group in which the Log Analytics workspace is created"
}
variable "location" {
type = string
description = "Specifies the supported Azure location where the resource exists"
}
variable "custom_adf_workbook_name" {
type = string
description = "Specifies the display name of Azure Data Factory Workbook"
default = null
}
variable "custom_databricks_workbook_name" {
type = string
description = "Specifies the display name of Databricks Workbook"
default = null
}
variable "custom_adf_dashboard_name" {
type = string
description = "Specifies the name of the Azure Data Factory Shared Dashboard"
default = null
}
variable "custom_databricks_dashboard_name" {
type = string
description = "Specifies the name of the Databricks Shared Dashboard"
default = null
}
variable "tags" {
type = map(string)
description = "A mapping of tags to assign to the resource"
default = {}
}
variable "adf_map" {
type = map(string)
description = "Azure Data Factory name to id map"
default = {}
}
variable "log_analytics_workspace_map" {
type = map(string)
description = "Azure Log Analytics name to id map"
default = {}
}