nixos-anywhere/terraform/nixos-rebuild/variables.tf
2023-02-14 07:34:24 +01:00

16 lines
319 B
HCL

variable "nixos_system" {
type = string
description = "The nixos system to deploy"
}
variable "target_host" {
type = string
description = "DNS host to deploy to"
}
variable "target_port" {
type = number
description = "SSH port used to connect to the target_host"
default = 22
}