generated from equinix-labs/terraform-equinix-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
41 lines (37 loc) · 900 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
# Module Vars
variable "metal_auth_token" {
description = "Equinix Metal user api token."
type = string
sensitive = true
}
variable "metal_organization_id" {
type = string
description = "Equinix Metal organization id"
}
variable "enable_workshop_setup" {
type = bool
description = "Enable Workshop Setup module"
default = true
}
variable "enable_metal" {
type = bool
description = "Enable Metal module"
default = true
}
variable "metal_config" {
description = "Configuration for Metal Setup config"
type = object({
device_count = number
os = string
billing_cycle = string
cluster_name = string
device_type = string
})
default = {
device_count = 3
os = "ubuntu_20_04"
billing_cycle = "hourly"
cluster_name = "metal-cluster"
device_type = "m3.small.x86"
}
}