Fediversity/deployment/run/tf-single-host/variables.tf
Kiara Grouwstra b12062c58c factor out nixos conf
Signed-off-by: Kiara Grouwstra <kiara@procolix.eu>
2025-09-18 20:05:57 +02:00

26 lines
489 B
HCL

variable "nixos_conf" {
description = "The path to the NixOS configuration to deploy."
type = string
}
variable "username" {
description = "the SSH user to use"
type = string
default = "root"
}
variable "host" {
description = "the host to access by SSH"
type = string
}
variable "key_file" {
description = "path to the user's SSH private key"
type = string
}
variable "ssh_opts" {
description = "Extra SSH options (`-o`) to use."
type = string
default = "[]"
}