refactor: make ssh keys to be a list

This commit is contained in:
2026-07-31 19:44:48 +02:00
parent 2495e180e9
commit 35fb02e95e
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -13,9 +13,9 @@ variable "ip_address" {
type = string
}
variable "ssh_public_key" {
description = "Public SSH key for the admin user"
type = string
variable "ssh_public_keys" {
description = "List of public SSH keys for the admin user"
type = list(string)
}
variable "gateway" {