-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
163 lines (141 loc) · 3.86 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
variable "ssh_public_key_path" {
description = "The ssh public key authorized to login to the cluster."
type = string
}
variable "location" {
description = "The location in which to create the cluster."
type = string
}
variable "project_id" {
description = "The project in which to create the cluster."
type = string
}
variable "vpc_subnet_id" {
description = "The vpc subnet id."
type = string
default = null
}
variable "slurm_head_node_count" {
description = "The number of slurm head nodes."
type = number
default = 2
}
variable "slurm_head_node_type" {
description = "The slurm head node instance type."
type = string
default = "c1a.16x"
}
# This is only required when using an infiniband enabled instance type for the head nodes.
variable "slurm_head_node_ib_partition_id" {
description = "The ib partition in which to create the head node."
type = string
default = null
}
variable "slurm_head_node_reservation_id" {
description = "The slurm head node reservation id"
type = string
default = null
}
variable "slurm_login_node_count" {
description = "The number of slurm login nodes."
type = number
default = 2
}
variable "slurm_login_node_type" {
description = "The slurm login node instance type."
type = string
default = "c1a.16x"
}
variable "slurm_login_node_reservation_id" {
description = "The slurm login node reservation id"
type = string
default = null
}
# This is only required when using an infiniband enabled instance type for the login nodes.
variable "slurm_login_node_ib_partition_id" {
description = "The ib partition in which to create the login node."
type = string
default = null
}
variable "slurm_nfs_node_type" {
description = "The slurm nfs node instance type."
type = string
default = "s1a.80x"
}
variable "slurm_nfs_home_size" {
description = "The slurm nfs host size."
type = string
default = "10240GiB"
}
# This is only required when using an infiniband enabled instance type for the nfs node.
variable "slurm_nfs_node_ib_partition_id" {
description = "The ib partition in which to create the nfs node."
type = string
default = null
}
variable "slurm_nfs_node_reservation_id" {
description = "The slurm nfs node reservation id"
type = string
default = null
}
variable "slurm_compute_node_type" {
description = "The slurm compute node instance type."
type = string
}
variable "slurm_compute_node_count" {
description = "The number of slurm compute nodes."
type = number
}
# This is only required when using an infiniband enabled instance type for the compute nodes.
variable "slurm_compute_node_ib_partition_id" {
description = "The ib partition in which to create the compute nodes."
type = string
default = null
}
variable "slurm_compute_node_reservation_id" {
description = "The slurm compute node reservation id"
type = string
default = null
}
variable "slurm_users" {
description = "Additional users"
type = list(object({
name = string
uid = number
ssh_pubkey = string
}))
default = []
}
variable "partitions" {
description = "Partition configuration"
type = list(object({
name = string
extra_args = map(string)
}))
default = [
{
name = "batch"
extra_args = {
"Default" = "YES",
"MaxTime" = "INFINITE",
"State" = "UP",
}
}, {
name = "login"
extra_args = {
"State": "INACTIVE",
"Hidden": "YES",
}
}
]
}
variable "slurm_shared_volumes" {
description = "The shared volume mounts"
type = list(object({
id = string
name = string
mount_point = string
mode = string # "ready-only" | "read-write"
}))
default = []
}