-
Notifications
You must be signed in to change notification settings - Fork 151
/
Copy pathvariables.tf
37 lines (32 loc) · 1.06 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
variable "databricks_account_client_id" {
type = string
description = "Application ID of account-level service principal"
}
variable "databricks_account_client_secret" {
type = string
description = "Client secret of account-level service principal"
}
variable "databricks_account_id" {
type = string
description = "Databricks Account ID"
}
variable "databricks_users" {
description = <<EOT
List of Databricks users to be added at account-level for Unity Catalog.
Enter with square brackets and double quotes
e.g ["[email protected]", "[email protected]"]
EOT
type = list(string)
}
variable "databricks_account_admins" {
description = <<EOT
List of Admins to be added at account-level for Unity Catalog.
Enter with square brackets and double quotes
e.g ["[email protected]", "[email protected]"]
EOT
type = list(string)
}
variable "unity_admin_group" {
description = "Name of the admin group. This group will be set as the owner of the Unity Catalog metastore"
type = string
}