homelab/infra/variable.tf

20 lines
239 B
Terraform
Raw Normal View History

2022-06-19 14:04:32 +00:00
variable "hcloud_token" {
# default = <your-api-token>
}
variable "location" {
default = "hel1"
}
variable "instances" {
default = "1"
}
variable "server_type" {
default = "cpx11"
}
variable "os_type" {
default = "rocky-8"
}