Working Instance creation.

This commit is contained in:
2025-03-28 10:08:14 +01:00
parent d83774fc80
commit b8b56c9b7e
3 changed files with 48 additions and 0 deletions

7
variables.tf Normal file
View File

@ -0,0 +1,7 @@
variable "ssh" {
description = "SSH Key(s) definition"
type = list(object({
public_key = string
ssh_user = string
}))
}