forked from databricks/terraform-databricks-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
49 lines (38 loc) · 870 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
40
41
42
43
44
45
46
47
48
49
variable "databricks_account_username" {}
variable "databricks_account_password" {}
variable "databricks_account_id" {}
variable "tags" {
default = {}
}
variable "spoke_cidr_block" {
default = "10.173.0.0/16"
}
variable "hub_cidr_block" {
default = "10.10.0.0/16"
}
variable "region" {
default = "eu-central-1"
}
resource "random_string" "naming" {
special = false
upper = false
length = 6
}
variable "whitelisted_urls" {
default = [".pypi.org", ".pythonhosted.org", ".cran.r-project.org"]
}
variable "db_web_app" {
default = "frankfurt.cloud.databricks.com"
}
variable "db_tunnel" {
default = "tunnel.eu-central-1.cloud.databricks.com"
}
variable "db_rds" {
default = "mdv2llxgl8lou0.ceptxxgorjrc.eu-central-1.rds.amazonaws.com"
}
variable "db_control_plane" {
default = "18.159.44.32/28"
}
variable "prefix" {
default = "demo"
}