-
Notifications
You must be signed in to change notification settings - Fork 138
/
Copy pathvariables.tf
55 lines (45 loc) · 1.4 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
variable "databricks_account_id" {
type = string
description = "Databricks Account ID"
}
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 "prefix" {
type = string
description = "Prefix to use in generated VPC name"
}
# These three ranges need to be computed based on the workspace size (cf documentation)
variable "subnet_ip_cidr_range" {
type = string
description = "IP Range for Nodes subnet (primary)"
}
variable "pod_ip_cidr_range" {
type = string
description = "IP Range for Pods subnet (secondary)"
}
variable "svc_ip_cidr_range" {
type = string
description = "IP Range for Services subnet (secondary)"
}
variable "subnet_name" {
type = string
description = "Name of the subnet to create"
}
variable "router_name" {
type = string
description = "Name of the compute router to create"
}
variable "nat_name" {
type = string
description = "Name of the NAT service in compute router"
}
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)
}