Finished LZ.
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user