-
Notifications
You must be signed in to change notification settings - Fork 55
/
variables.tf
79 lines (77 loc) · 1.98 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
variable "location-vwan" {
description = "Location to deploy vwan"
type = string
default = "swedencentral"
//default = "westeurope"
}
variable "location-vwan-we-hub" {
description = "Location to deploy we hub"
type = string
default = "swedencentral"
//default = "westeurope"
}
variable "location-spoke-1" {
description = "Location to deploy spoke-1"
type = string
default = "swedencentral"
//default = "westeurope"
}
variable "location-spoke-2" {
description = "Location to deploy spoke-2"
type = string
default = "swedencentral"
//default = "westeurope"
}
variable "location-spoke-3" {
description = "Location to deploy spoke-3"
type = string
default = "EastUS"
}
variable "location-spoke-4" {
description = "Location to deploy spoke-4"
type = string
//default = "WestUS2"
default = "EastUS"
}
variable "location-hub-1" {
description = "Location to deploy hub-1"
type = string
default = "swedencentral"
//default = "westeurope"
}
variable "location-hub-2" {
description = "Location to deploy hub-2"
type = string
default = "EastUS"
}
variable "location-onprem" {
description = "Location to deploy onprem"
type = string
default = "uksouth"
}
variable "location-onprem2" {
description = "Location to deploy onprem2"
type = string
default = "swedencentral"
//default = "westeurope"
}
variable "location-spoke-services" {
description = "Location to deploy spoke-services"
type = string
default = "swedencentral"
//default = "westeurope"
}
variable "username" {
description = "Username for Virtual Machines"
type = string
default = "AzureAdmin"
}
variable "password" {
description = "Virtual Machine password, must meet Azure complexity requirements"
type = string
default = "Microhack2020"
}
variable "vmsize" {
description = "Size of the VMs"
default = "Standard_D2s_v3"
}