infrastructure-ng/id.tjo.space/terraform/variables.tf

22 lines
281 B
Terraform
Raw Normal View History

2025-03-05 21:43:20 +00:00
variable "hcloud_token" {
sensitive = true
2025-03-06 20:11:57 +00:00
type = string
2025-03-05 21:43:20 +00:00
}
variable "dnsimple_token" {
sensitive = true
2025-03-06 20:11:57 +00:00
type = string
2025-03-05 21:43:20 +00:00
}
2025-03-06 19:04:18 +00:00
variable "dnsimple_account_id" {
2025-03-05 21:43:20 +00:00
type = string
}
variable "ssh_keys" {
type = map(string)
}
2025-03-06 19:04:18 +00:00
variable "nodes" {
type = list(string)
}