Terraform-IaC/template/hetzner-infra/modules/server/variables.tf
2023-07-09 17:05:29 +01:00

35 lines
No EOL
417 B
HCL

variable "server_name" {
type = string
}
variable "server_type" {
type = string
}
variable "server_image" {
type = string
}
variable "server_location" {
type = string
}
variable "server_backups" {
type = string
}
variable "labels" {
type = map(string)
}
variable "server_private_ipv4" {
type = string
}
variable "server_network_id" {
type = string
}
variable "service_type" {
type = string
}