nixos-wiki-infra/terraform/nixos-wiki/variables.tf

38 lines
752 B
Terraform
Raw Normal View History

2023-05-10 21:05:10 +02:00
variable "server_type" {
2023-05-14 18:37:15 +02:00
type = string
default = "cx21"
2023-05-10 21:05:10 +02:00
description = "Hetzner cloud server type"
}
variable "server_location" {
2023-05-14 18:37:15 +02:00
type = string
default = "hel1"
2023-05-10 21:05:10 +02:00
description = "Hetzner cloud server location"
}
variable "netlify_dns_zone" {
2023-05-14 18:37:15 +02:00
type = string
2023-05-10 21:05:10 +02:00
description = "Netlify DNS zone"
}
variable "nixos_vars_file" {
2023-05-14 18:37:15 +02:00
type = string
2023-05-10 21:05:10 +02:00
description = "File to write NixOS configuration variables to"
}
variable "nixos_flake_attr" {
2023-05-14 18:37:15 +02:00
type = string
2023-05-10 21:05:10 +02:00
description = "NixOS configuration flake attribute"
}
2023-05-11 00:29:15 +02:00
variable "domain" {
2023-05-14 18:37:15 +02:00
type = string
2023-05-11 00:29:15 +02:00
description = "Domain name"
}
variable "tags" {
2023-05-14 18:37:15 +02:00
type = map(string)
default = {}
2023-05-11 00:29:15 +02:00
description = "Tags to add to the server"
}