-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
41 lines (35 loc) · 1021 Bytes
/
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
variable "resourcegroup_name" {
description = "Resource group for VM."
type = string
default = "workshop"
}
variable "location" {
description = "Location for the resources."
type = string
default = "westeurope"
}
variable "create_resourcegroup" {
description = "Set to true if you want to create a new resourcegroup."
type = bool
default = true
}
variable "password" {
description = "The password for the VM(s) to be created."
type = string
default = null
}
variable "script_path" {
description = "Path of the script to post install on VM(s)."
type = string
default = "./post_install_gnome_and_azure.sh"
}
variable "students" {
description = "List of names of participants in workshop. Provisioning same number of VM(s) as names in list."
type = list
default = ["claes"]
}
variable "skip_extension" {
description = "Set if not want to install anything to the VM(s)."
type = bool
default = false
}