forked from flatcar/flatcar-terraform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
31 lines (26 loc) · 840 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
variable "machines" {
type = list(string)
description = "Machine names, corresponding to cl/machine-NAME.yaml.tmpl files"
}
variable "cluster_name" {
type = string
description = "Cluster name used as prefix for the machine names"
}
variable "ssh_keys" {
type = list(string)
description = "SSH public keys for user 'core', only needed if you don't have it specified in the Equinix Metal Project"
}
variable "facilities" {
type = list(string)
default = ["sjc1"]
description = "List of facility codes with deployment preferences"
}
variable "plan" {
type = string
default = "t1.small.x86"
description = "The device plan slug"
}
variable "project_id" {
type = string
description = "The Equinix Metal Project to deploy in (in the web UI URL after /projects/)"
}