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

22 lines
429 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_user" {
type = string
default = "root"
description = "User to deploy as"
}
2023-01-13 18:06:08 +03:00
variable "target_port" {
type = number
description = "SSH port used to connect to the target_host"
default = 22
}