-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy pathvariables.tf
47 lines (37 loc) · 884 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
variable "databricks_account_id" {}
variable "databricks_account_username" {}
variable "databricks_account_password" {}
variable "databricks_account_client_id" {}
variable "databricks_account_client_secret" {}
variable "tags" {
default = {}
}
variable "cidr_block" {
default = "10.4.0.0/16"
}
variable "region" {
default = "eu-west-2"
}
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 = "london.cloud.databricks.com"
}
variable "db_tunnel" {
default = "tunnel.eu-west-2.cloud.databricks.com"
}
variable "db_rds" {
default = "mdio2468d9025m.c6fvhwk6cqca.eu-west-2.rds.amazonaws.com"
}
variable "db_control_plane" {
default = "18.134.65.240/28"
}
variable "prefix" {
default = "demo"
}