-
Notifications
You must be signed in to change notification settings - Fork 217
Expand file tree
/
Copy pathvariables.tf
More file actions
144 lines (116 loc) · 3.59 KB
/
variables.tf
File metadata and controls
144 lines (116 loc) · 3.59 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
variable "adb_ws_name" {
type = string
description = "The name of an existing Databricks workspace that Overwatch will monitor"
}
variable "rg_name" {
type = string
description = "Resource group name"
}
variable "ehn_name" {
type = string
description = "Eventhub namespace name"
}
variable "tenant_id" {
type = string
description = "Azure tenant ID"
}
variable "overwatch_spn_app_id" {
type = string
description = "Azure SPN used to create Databricks mounts"
}
variable "ehn_auth_rule_name" {
type = string
description = "Eventhub namespace authorization rule name"
}
variable "logs_sa_name" {
type = string
description = "Logs storage account name"
}
variable "random_string" {
type = string
description = "Random string used as a suffix for the resources names"
}
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 "etl_storage_prefix" {
type = string
description = "Overwatch ETL storage prefix, which represents a mount point to the ETL storage account"
}
variable "interactive_dbu_price" {
type = number
description = "Contract price for interactive DBUs"
}
variable "automated_dbu_price" {
type = number
description = "Contract price for automated DBUs"
}
variable "sql_compute_dbu_price" {
type = number
description = "Contract price for DBSQL DBUs"
}
variable "jobs_light_dbu_price" {
type = number
description = "Contract price for interactive DBUs"
}
variable "max_days" {
type = number
description = "This is the max incremental days that will be loaded. Usually only relevant for historical loading and rebuilds"
}
variable "excluded_scopes" {
type = string
description = "Scopes that should not be excluded from the pipelines"
}
variable "active" {
type = bool
description = "Whether or not the workspace should be validated / deployed"
}
variable "proxy_host" {
type = string
description = "Proxy url for the workspace"
}
variable "proxy_port" {
type = string
description = "Proxy port for the workspace"
}
variable "proxy_user_name" {
type = string
description = "Proxy user name for the workspace"
}
variable "proxy_password_scope" {
type = string
description = "Scope which contains the proxy password key"
}
variable "proxy_password_key" {
type = string
description = "Key which contains proxy password"
}
variable "success_batch_size" {
type = string
description = "API Tunable - Indicates the size of the buffer on filling of which the result will be written to a temp location. This is used to tune performance in certain circumstance"
}
variable "error_batch_size" {
type = string
description = "API Tunable - Indicates the size of the error writer buffer containing API call errors"
}
variable "enable_unsafe_SSL" {
type = string
description = "API Tunable - Enables unsafe SSL"
}
variable "thread_pool_size" {
type = string
description = "API Tunable - Max number of API calls Overwatch is allowed to make in parallel"
}
variable "api_waiting_time" {
type = string
description = "API Tunable - Overwatch makes async api calls in parallel, api_waiting_time signifies the max wait time in case of no response received from the api call"
}
variable "auditlog_prefix_source_path" {
type = string
description = "Location of auditlog (AWS/GCP Only)"
}