-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathvariables.tf
60 lines (53 loc) · 1.44 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
#Define variables
variable userids {
description = "unique student id"
default = "student1"
}
variable "softlayer_username" {
description = "Enter your IBM Infrastructure (SoftLayer) full username, you can get this using: https://control.bluemix.net/account/user/profile"
}
variable "softlayer_api_key" {
description = "Enter your IBM Infrastructure (SoftLayer) API key, you can get this using: https://control.bluemix.net/account/user/profile"
}
variable "ibmcloud_api_key" {
description = "Enter your IBM Cloud API Key, you can get your IBM Cloud API key using: https://console.bluemix.net/iam#/apikeys"
}
variable ssh_key {
description = "ssh public key"
default = ""
}
################################
# Do not change the variables below
################################
variable privatevlanid {
description = "private VLAN"
default = "2259665"
}
variable publicvlanid {
description = "public VLAN"
default = "2279413"
}
variable ssh_label {
description = "ssh label"
default = "testkey"
}
variable ssh_notes {
description = "ssh public key notes"
default = "This is an ssh public key"
}
variable osrefcode {
description = "operating system reference code for VMs"
default = "DEBIAN_8_64"
}
variable datacenter {
description = "location to deploy"
default = "dal09"
}
variable domain {
description = "domain of the VMs"
default = "domain goes herem"
}
variable vm_count {
description = "number of VMs"
default = "1"
}