2023-10-17 09:46:15 -04:00
|
|
|
variable "base_name" {
|
2023-12-15 04:36:58 -05:00
|
|
|
description = "Base name of the jump host."
|
2023-10-17 09:46:15 -04:00
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "ports" {
|
2023-12-15 04:36:58 -05:00
|
|
|
description = "Ports to forward to the load balancer."
|
2023-10-17 09:46:15 -04:00
|
|
|
type = list(number)
|
|
|
|
}
|
|
|
|
|
2023-12-15 04:36:58 -05:00
|
|
|
variable "subnet_id" {
|
|
|
|
description = "Subnet ID to deploy the jump host into."
|
2023-10-17 09:46:15 -04:00
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
2023-12-15 04:36:58 -05:00
|
|
|
variable "lb_internal_ip" {
|
|
|
|
description = "Internal IP of the load balancer."
|
2023-10-17 09:46:15 -04:00
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
2023-12-15 04:36:58 -05:00
|
|
|
variable "resource_group" {
|
|
|
|
description = "Resource group name to deploy the jump host into."
|
2023-10-17 09:46:15 -04:00
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
2023-12-15 04:36:58 -05:00
|
|
|
variable "location" {
|
|
|
|
description = "Location to deploy the jump host into."
|
2023-10-17 09:46:15 -04:00
|
|
|
type = string
|
|
|
|
}
|
2024-04-19 05:07:57 -04:00
|
|
|
|
|
|
|
variable "tags" {
|
|
|
|
description = "Tags of the jump host."
|
|
|
|
type = map(any)
|
|
|
|
}
|