Tinkerbell.Sandbox/deploy/terraform/variables.tf
Jacob Weinstock afc878ad88 Add Terraform with Equinix Metal:
This gets the Tinkerbell Sandbox up and running with
Terraform on Equinix Metal.

Signed-off-by: Jacob Weinstock <jakobweinstock@gmail.com>
2021-08-19 10:46:16 -06:00

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"
}