2021-02-04 19:49:28 +00:00
|
|
|
variable "metal_api_token" {
|
2021-02-04 19:53:10 +00:00
|
|
|
description = "Equinix Metal user api token"
|
2020-09-10 14:02:49 +00:00
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "project_id" {
|
|
|
|
description = "Project ID"
|
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "worker_count" {
|
|
|
|
description = "Number of Workers"
|
|
|
|
type = number
|
|
|
|
default = 1
|
|
|
|
}
|
|
|
|
variable "facility" {
|
|
|
|
description = "Packet facility to provision in"
|
|
|
|
type = string
|
|
|
|
default = "sjc1"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "device_type" {
|
|
|
|
type = string
|
|
|
|
description = "Type of device to provision"
|
|
|
|
default = "c3.small.x86"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "ssh_user" {
|
|
|
|
description = "Username that will be used to transfer file from your local environment to the provisioner"
|
|
|
|
type = string
|
|
|
|
default = "root"
|
|
|
|
}
|