-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvariables.tf
More file actions
89 lines (74 loc) · 1.66 KB
/
Copy pathvariables.tf
File metadata and controls
89 lines (74 loc) · 1.66 KB
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
variable "created_date" {
type = string
default = ""
}
variable "project" {
type = string
description = "The project name."
default = null
}
variable "profile" {
type = string
description = "The AWS profile used to deploy the clusters."
default = null
}
variable "region" {
type = string
default = "us-east-2"
}
variable "availability_zone" {
type = string
default = "us-east-2b"
}
variable "vpc_cidr" {
type = string
default = "10.0.0.0/16"
}
variable "public_cidr" {
type = string
default = "10.0.0.0/24"
}
variable "private_cidr" {
type = string
default = "10.0.1.0/24"
}
variable "slurm_version" {
description = "Slurm version"
type = string
default = "25.11"
}
variable "instance_login" {
description = "Instance type of login node(s)"
type = string
default = "c6a.8xlarge"
}
variable "instance_x86" {
description = "Instance type of CPU X86_64 node(s)"
type = list(any)
default = ["hpc6a.48xlarge", "hpc7a.96xlarge", "hpc8a.96xlarge"]
}
variable "instance_arm" {
description = "Instance type of CPU ARM64 node(s)"
type = list(any)
default = ["m8g.48xlarge"]
}
variable "instance_gpu" {
description = "Instance type of GPU node(s)"
type = list(any)
default = ["g6.xlarge"]
}
variable "ssh_key" {
description = "ssh public key for instances"
type = string
default = null
}
variable "s3_bucket" {
description = "S3 bucket name"
type = string
default = null
}
variable "users" {
description = "A LDIF file containing users of the cluster"
type = string
default = null
}