Finished LZ.

This commit is contained in:
2025-04-25 06:45:10 +02:00
parent da3893a912
commit 5968cb558e
6 changed files with 298 additions and 68 deletions
+21
View File
@@ -39,6 +39,20 @@ variable "subnet_name" {
type = string
}
variable "internal_ip" {
description = "The internal IP address of the VM instance."
type = string
nullable = true
default = null
}
variable "external_ip_name" {
description = "The external IP address of the VM instance."
type = string
nullable = true
default = null
}
variable "ssh" {
description = "SSH Key(s) definition"
type = list(object({
@@ -51,3 +65,10 @@ variable "remote_subnets" {
type = list(string)
default = []
}
variable "startup_script" {
description = "Startup script to run on the VM instance."
type = string
nullable = true
default = null
}