-
Notifications
You must be signed in to change notification settings - Fork 4
/
variables.tf
63 lines (50 loc) · 1.2 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
# Define username/pass required by Azure
# Not used at all with GitHub images
variable "location" {
type = string
}
variable "azure_sku" {
type = string
default = "Standard"
}
variable "domain" {
type = string
}
variable "creator" {
type = string
}
variable "ghes_version" {
type = string
description = "GitHub Enterprise Server version (e.g. 3.0.2)"
}
variable "cluster_name" {
type = string
description = "Cluster name (e.g. ghes3). Must be valid as part of a hostname."
}
variable "vm_size" {
type = string
description = "Azure VM size (e.g. Standard_DS12_v2)"
}
variable "root_disk_size" {
type = number
description = "Size of root disk for VMs"
default = 200
}
variable "data_node_disk_size" {
type = number
description = "Size of /data/user disk for data-tier VMs"
default = 100
}
variable "app_node_disk_size" {
type = number
description = "Size of /data/user disk for app-tier VMs"
default = 100
}
variable "admin_username" {
type = string
description = "Administrator user name for virtual machine"
}
variable "admin_password" {
type = string
description = "Password must meet Azure complexity requirements"
}