-
Notifications
You must be signed in to change notification settings - Fork 151
/
Copy pathvariables.tf
52 lines (43 loc) · 1.34 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
variable "tags" {
default = {}
type = map(string)
description = "(Optional) Optional tags to add to created resources"
}
variable "workspace_name" {
type = string
default = ""
description = "(Optional) Workspace Name for this module - if none are provided, the prefix will be used to name the workspace via coalesce()"
}
variable "prefix" {
default = "demo"
type = string
description = "(Optional) Prefix for use in the generated names"
}
variable "region" {
type = string
description = "(Required) AWS region where the assets will be deployed"
}
variable "vpc_id" {
type = string
description = "(Required) AWS VPC ID"
}
variable "security_group_ids" {
type = list(string)
description = "(Required) List of VPC network security group IDs"
}
variable "vpc_private_subnets" {
type = list(string)
description = "(Required) AWS VPC Subnets where the Databricks workspace will be deployed"
}
variable "databricks_account_id" {
type = string
description = "(Required) Databricks Account ID"
}
variable "cross_account_role_arn" {
type = string
description = "(Required) AWS cross account role ARN that will be used for the Databricks workspace"
}
variable "root_storage_bucket" {
type = string
description = "(Required) AWS root storage bucket"
}