-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
52 lines (47 loc) · 1.58 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
variable "data_factory_id" {
type = string
description = "Data Factory name"
}
variable "default_ir_name" {
type = string
description = "Name of Auto Resolve Integration Runtime"
}
variable "adls_linked_services" {
description = "List of objects with parameters to configure ADLSv2 Linked Services in Data Factory"
type = list(object({
name = string
data_lake_storage_gen2_url = string
}))
default = []
}
variable "databricks_linked_services" {
description = "List of objects with parameters to configure Databricks Linked Services in Data Factory"
type = list(object({
name = string
cluster_id = string
token = string
url = string
}))
default = []
}
variable "mssql_linked_services" {
description = "List of objects with parameters to configure MySQL Linked Services in Data Factory"
type = list(object({
name = string
connection_string = string
}))
default = []
}
variable "key_vault_linked_services" {
description = "List of objects with parameters to configure Key Vault Linked Services in Data Factory"
type = list(object({
name = string
key_vault_id = string
data_factory_object_id = string
data_factory_tenant_id = string
key_vault_policy_key_permissions = optional(list(string), [])
key_vault_policy_secret_permissions = optional(list(string), ["Get", "List"])
key_vault_policy_storage_permissions = optional(list(string), [])
}))
default = []
}