-
Notifications
You must be signed in to change notification settings - Fork 132
/
variables.tf
68 lines (57 loc) · 1.67 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
56
57
58
59
60
61
62
63
64
65
66
67
68
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 "tags" {
default = {}
type = map(string)
description = "Optional tags to add to created resources"
}
variable "cidr_block" {
description = "IP range for AWS VPC"
type = string
default = "10.4.0.0/16"
}
variable "region" {
default = "eu-west-2"
type = string
description = "AWS region to deploy to"
}
variable "whitelisted_urls" {
default = [".pypi.org", ".pythonhosted.org", ".cran.r-project.org"]
description = "List of the domains to allow traffic to"
type = list(string)
}
variable "db_web_app" {
default = "london.cloud.databricks.com"
description = "Hostname of Databricks web application"
type = string
}
variable "db_tunnel" {
default = "tunnel.eu-west-2.cloud.databricks.com"
description = "Hostname of Databricks SCC Relay"
type = string
}
variable "db_rds" {
default = "mdio2468d9025m.c6fvhwk6cqca.eu-west-2.rds.amazonaws.com"
description = "Hostname of AWS RDS instance for built-in Hive Metastore"
type = string
}
variable "db_control_plane" {
default = "18.134.65.240/28"
description = "IP Range for AWS Databricks control plane"
type = string
}
variable "prefix" {
default = "demo"
type = string
description = "Prefix for use in the generated names"
}