-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy pathvariables.tf
60 lines (51 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
56
57
58
59
60
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 "spoke_cidr_block" {
default = "10.173.0.0/16"
description = "IP range for spoke AWS VPC"
type = string
}
variable "hub_cidr_block" {
default = "10.10.0.0/16"
description = "IP range for hub AWS VPC"
type = string
}
variable "region" {
type = string
default = "eu-central-1"
description = "AWS region to deploy to"
}
variable "whitelisted_urls" {
type = list(string)
default = [
".pypi.org", ".pythonhosted.org", # python packages
".cran.r-project.org", # R packages
".maven.org", # maven artifacts
".storage-download.googleapis.com", # maven mirror
".spark-packages.org", # spark packages
]
}
variable "enable_private_link" {
type = bool
default = false
}
variable "prefix" {
default = "demo"
type = string
description = "Prefix for use in the generated names"
}