1
0
Fork 0
server-configuration/terraform/nixos-vpn/variables.tf
2025-02-22 06:01:14 -06:00

33 lines
694 B
HCL

variable "server_type" {
type = string
default = "cpx11"
description = "Hetzner cloud server type"
}
variable "server_location" {
type = string
default = "hil"
description = "Hetzner cloud server location"
}
variable "hostname" {
type = string
default = "vpn"
description = "Host name for server"
}
variable "nixos_vars_file" {
type = string
description = "File to write NixOS configuration variables to"
}
variable "nixos_flake_attr" {
type = string
description = "NixOS configuration flake attribute"
}
variable "tags" {
type = map(string)
default = {}
description = "Tags to add to the server"
}