afc878ad88
This gets the Tinkerbell Sandbox up and running with Terraform on Equinix Metal. Signed-off-by: Jacob Weinstock <jakobweinstock@gmail.com>
22 lines
429 B
HCL
22 lines
429 B
HCL
variable "metal_api_token" {
|
|
description = "Equinix Metal user api token"
|
|
type = string
|
|
}
|
|
|
|
variable "project_id" {
|
|
description = "Project ID"
|
|
type = string
|
|
}
|
|
|
|
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"
|
|
}
|