-
Notifications
You must be signed in to change notification settings - Fork 135
/
variables.tf
41 lines (32 loc) · 1023 Bytes
/
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
variable "databricks_account_id" {
type = string
description = "Databricks Account ID"
}
variable "databricks_google_service_account" {
description = "Email of the service account used for deployment"
type = string
}
variable "google_project" {
type = string
description = "Google project for VCP/workspace deployment"
}
variable "google_region" {
type = string
description = "Google region for VCP/workspace deployment"
}
variable "google_zone" {
description = "Zone in GCP region"
type = string
}
variable "prefix" {
type = string
description = "Prefix to use in generated VPC name"
}
variable "workspace_name" {
description = "Name of the workspace to create"
type = string
}
variable "delegate_from" {
description = "Identities to allow to impersonate created service account (in form of user:[email protected], group:[email protected] or serviceAccount:[email protected])"
type = list(string)
}