-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
101 lines (85 loc) · 2.48 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
89
90
91
92
93
94
95
96
97
98
99
100
101
variable "name" {
type = string
description = "Name of the deployment"
default = "chbou"
}
variable "location" {
type = string
description = "Location of the resources"
default = "westeurope"
}
#Hub Virtual Network
variable "vnet_hub_address_space" {
type = list(string)
description = "Address space of the Hub virtual network"
default = ["10.40.0.0/16"]
}
variable "jumphost_subnet_address_space" {
type = list(string)
description = "Address space of the Jumphost subnet"
default = ["10.40.2.0/24"]
}
variable "bastion_subnet_address_space" {
type = list(string)
description = "Address space of the bastion subnet"
default = ["10.40.3.0/24"]
}
variable "firewall_subnet_address_space" {
type = list(string)
description = "Address space of the Az Fiewall subnet"
default = ["10.40.4.0/24"]
}
#Spoke ML
variable "vnet_ml_address_space" {
type = list(string)
description = "Address space of the spoke virtual network"
default = ["10.41.0.0/16"]
}
variable "workspace_subnet_address_space" {
type = list(string)
description = "Address space of the ML workspace subnet"
default = ["10.41.0.0/24"]
}
variable "training_subnet_address_space" {
type = list(string)
description = "Address space of the training subnet"
default = ["10.41.1.0/24"]
}
variable "inference_subnet_address_space" {
type = list(string)
description = "Address space of the inference subnet"
default = ["10.41.2.0/24"]
}
#Spoke AKS
variable "vnet_aks_address_space" {
type = list(string)
description = "Address space of the spoke virtual network"
default = ["10.42.0.0/16"]
}
variable "aks_subnet_address_space" {
type = list(string)
description = "Address space of the training subnet"
default = ["10.42.0.0/16"]
}
#Image Build Compute
variable "image_build_compute_name" {
type = string
description = "Name of the compute cluster to be created and set to build docker images"
default = "image-builder"
}
# DSVM
variable "dsvm_name" {
type = string
description = "Name of the Data Science VM"
default = "chbouvmdsvm01"
}
variable "dsvm_admin_username" {
type = string
description = "Admin username of the Data Science VM"
default = "azureadmin"
}
variable "dsvm_host_password" {
type = string
description = "Password for the admin username of the Data Science VM"
sensitive = true
}