-
Notifications
You must be signed in to change notification settings - Fork 138
/
Copy pathvariables.tf
88 lines (75 loc) · 2.47 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
variable "databricks_account_id" {
type = string
description = "Databricks Account ID"
}
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
]
description = "List of the domains to allow traffic to"
}
variable "db_web_app" {
type = string
default = null # will use predefined for the region if not provided
description = "Webapp address that corresponds to the cloud region"
}
variable "db_tunnel" {
type = string
default = null # will use predefined for the region if not provided
description = "SCC relay address that corresponds to the cloud region"
}
variable "db_rds" {
type = string
default = null # will use predefined for the region if not provided
description = "RDS address for legacy Hive metastore that corresponds to the cloud region"
}
variable "db_control_plane" {
type = string
default = null # will use predefined for the region if not provided
description = "Control plane infrastructure address that corresponds to the cloud region"
}
variable "enable_private_link" {
type = bool
default = true
description = "Property to enable / disable Private Link"
}
variable "vpc_endpoint_backend_rest" {
type = string
default = null # will use predefined for the region if not provided
description = "VPC endpoint for workspace including REST API"
}
variable "vpc_endpoint_backend_relay" {
type = string
default = null # will use predefined for the region if not provided
description = "VPC endpoint for relay service (secure cluster connectivity)"
}
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" {
default = "eu-west-2"
type = string
description = "AWS region to deploy to"
}
variable "prefix" {
default = "demo"
type = string
description = "Prefix for use in the generated names"
}