feat: Added multiple SSH Key uploads

This commit is contained in:
2026-07-10 22:01:48 +01:00
parent 547fee06fa
commit e39e1637da
11 changed files with 38 additions and 33 deletions
+4 -4
View File
@@ -13,9 +13,9 @@ variable "location" {
type = string
}
variable "ssh_key_id" {
description = "ID of the Hetzner Cloud SSH key to install on the server."
type = string
variable "ssh_key_ids" {
description = "IDs of the Hetzner Cloud SSH keys to install on the server."
type = list(string)
}
variable "network_id" {
@@ -49,7 +49,7 @@ variable "bootstrap_script" {
}
variable "ssh_private_key_path" {
description = "Local path to the private key matching var.ssh_key_id, used to run the bootstrap script over SSH."
description = "Local path to the private key matching one of var.ssh_key_ids, used to run the bootstrap script over SSH."
type = string
}