homelab/terraform/cloud/variable.tf

27 lines
350 B
Terraform
Raw Normal View History

2022-06-19 14:04:32 +00:00
variable "hcloud_token" {
2023-09-17 16:28:12 +00:00
type = string
2022-06-19 14:04:32 +00:00
# default = <your-api-token>
}
2023-09-17 16:28:12 +00:00
variable "hdns_token" {
type=string
}
2022-06-19 14:04:32 +00:00
variable "location" {
2023-09-17 16:28:12 +00:00
type=string
2022-06-19 14:04:32 +00:00
default = "hel1"
}
variable "instances" {
2023-09-17 16:28:12 +00:00
type=number
2022-06-19 14:04:32 +00:00
default = "1"
}
variable "server_type" {
2023-09-17 16:28:12 +00:00
type=string
2023-11-04 20:33:51 +00:00
default = "CPX21"
2022-06-19 14:04:32 +00:00
}
variable "os_type" {
2023-09-17 16:28:12 +00:00
type=string
default = "rocky-9"
2022-06-19 14:04:32 +00:00
}