homelab/tf/modules/embassy/variables.tf

12 lines
192 B
HCL

variable "ssh_public_key_file" {
type = string
}
variable "ip_count" {
type = number
validation {
condition = var.ip_count >= 1
error_message = "Need at least one ip"
}
}