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

34 lines
798 B
Terraform
Raw Permalink 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
}
variable "ssh_private_key" {
type = string
description = "Content of private key used to connect to the target_host. If set to - no key is passed to openssh and ssh will back to its own configuration"
default = "-"
}
variable "ignore_systemd_errors" {
type = bool
description = "Ignore systemd errors happening during deploy"
default = false
}