nixos-anywhere/terraform/nixos-rebuild/variables.tf

16 lines
319 B
Terraform
Raw Normal View History

2023-01-13 18:06:08 +03:00
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
}