-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvars.tf
51 lines (44 loc) · 858 Bytes
/
vars.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
variable "location" {
type = string
default = "West Europe"
}
variable "vnet_address_space" {
type = list(string)
default = ["10.0.0.0/16"]
}
variable "vnet_subnet_adress_prefixes" {
type = list(list(string))
default = [["10.0.1.0/24"], ["10.0.2.0/24"]]
}
variable "tags" {
type = map(string)
default = {
subject = "BST"
}
}
variable "vm_size" {
type = string
default = "Standard_B1ls"
}
variable "vm_admin_username" {
type = string
default = "arek"
}
variable "vm_path_to_public_key" {
type = string
default = "~/.ssh/az-bst.pub"
}
variable "vm_image_reference" {
type = object({
publisher = string
offer = string
sku = string
version = string
})
default = {
publisher = "Debian"
offer = "debian-10"
sku = "10"
version = "latest"
}
}