forked from databricks/terraform-databricks-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
74 lines (61 loc) · 2.05 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
variable "location" {
type = string
description = "(Required) The location for the resources in this module"
}
variable "spoke_resource_group_name" {
type = string
description = "(Required) The name of the Resource Group to create"
}
variable "create_resource_group" {
type = bool
description = "(Optional) Creates resource group if set to true (default)"
default = true
}
variable "managed_resource_group_name" {
type = string
description = "(Optional) The name of the resource group where Azure should place the managed Databricks resources"
default = ""
}
variable "project_name" {
type = string
description = "(Required) The name of the project associated with the infrastructure to be managed by Terraform"
}
variable "environment_name" {
type = string
description = "(Required) The name of the project environment associated with the infrastructure to be managed by Terraform"
}
variable "spoke_vnet_address_space" {
type = string
description = "(Required) The address space for the spoke Virtual Network"
}
variable "tags" {
type = map(string)
description = "(Required) Map of tags to attach to resources"
}
variable "databricks_workspace_name" {
type = string
description = "Name of Databricks workspace"
}
variable "data_factory_name" {
type = string
description = "The name of the Azure Data Factory to deploy. Won't be created if not specified"
default = ""
}
variable "key_vault_name" {
type = string
description = "The name of the Azure Key Vault to deploy. Won't be created if not specified"
default = ""
}
variable "private_subnet_address_prefixes" {
type = list(string)
description = "Address space for private Databricks subnet"
}
variable "public_subnet_address_prefixes" {
type = list(string)
description = "Address space for public Databricks subnet"
}
variable "storage_account_names" {
type = list(string)
description = "Names of additional storage accounts to create"
default = []
}