-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy pathvariables.tf
170 lines (140 loc) · 3.71 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
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
variable "subscription_id" {
type = string
description = "Azure subscription ID"
}
variable "rg_name" {
type = string
description = "Resource group name"
}
variable "ehn_name" {
type = string
description = "Eventhubs namespace name"
}
variable "tenant_id" {
type = string
description = "Azure tenant ID"
}
variable "overwatch_spn_app_id" {
type = string
description = "Azure SPN application ID"
}
variable "overwatch_spn_secret" {
type = string
description = "Azure SPN secret"
}
variable "logs_sa_name" {
type = string
description = "Logs storage account name"
}
variable "ow_sa_name" {
type = string
description = "Overwatch ETL storage account name"
}
variable "key_vault_prefix" {
type = string
description = "AKV prefix"
}
variable "overwatch_ws_name" {
type = string
description = "Overwatch Databricks workspace name"
}
variable "databricks_secret_scope_name" {
type = string
description = "Databricks secret scope name (backed by Azure Key-Vault)"
default = "overwatch-akv"
}
variable "use_existing_overwatch_ws" {
type = string
description = "Overwatch ETL storage prefix, which represents a mount point to the ETL storage account"
default = false
}
variable "interactive_dbu_price" {
type = number
description = "Contract price for interactive DBUs"
default = 0.55
}
variable "automated_dbu_price" {
type = number
description = "Contract price for automated DBUs"
default = 0.3
}
variable "sql_compute_dbu_price" {
type = number
description = "Contract price for DBSQL DBUs"
default = 0.22
}
variable "jobs_light_dbu_price" {
type = number
description = "Contract price for interactive DBUs"
default = 0.1
}
variable "max_days" {
type = number
description = "This is the max incremental days that will be loaded. Usually only relevant for historical loading and rebuilds"
default = 30
}
variable "excluded_scopes" {
type = string
description = "Scopes that should not be excluded from the pipelines"
default = ""
}
variable "active" {
type = bool
description = "Whether or not the workspace should be validated / deployed"
default = true
}
variable "proxy_host" {
type = string
description = "Proxy url for the workspace"
default = ""
}
variable "proxy_port" {
type = string
description = "Proxy port for the workspace"
default = ""
}
variable "proxy_user_name" {
type = string
description = "Proxy user name for the workspace"
default = ""
}
variable "proxy_password_scope" {
type = string
description = "Scope which contains the proxy password key"
default = ""
}
variable "proxy_password_key" {
type = string
description = "Key which contains proxy password"
default = ""
}
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"
default = ""
}
variable "error_batch_size" {
type = string
description = "API Tunable - Indicates the size of the error writer buffer containing API call errors"
default = ""
}
variable "enable_unsafe_SSL" {
type = string
description = "API Tunable - Enables unsafe SSL"
default = ""
}
variable "thread_pool_size" {
type = string
description = "API Tunable - Max number of API calls Overwatch is allowed to make in parallel"
default = ""
}
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"
default = ""
}
variable "auditlog_prefix_source_path" {
type = string
description = "Location of auditlog (AWS/GCP Only)"
default = ""
}