27 lines
705 B
HCL
27 lines
705 B
HCL
variable "node_public_ip" {
|
|
type = string
|
|
description = "Public IP of compute node for Rancher cluster"
|
|
}
|
|
|
|
variable "node_internal_ip" {
|
|
type = string
|
|
description = "Internal IP of compute node for Rancher cluster"
|
|
default = ""
|
|
}
|
|
|
|
variable "node_username" {
|
|
type = string
|
|
description = "Username used for SSH access to the Rancher server cluster node"
|
|
}
|
|
|
|
variable "ssh_private_key_pem" {
|
|
type = string
|
|
description = "Private key used for SSH access to the Rancher server cluster node"
|
|
}
|
|
|
|
variable "rancher_kubernetes_version" {
|
|
type = string
|
|
description = "Kubernetes version to use for Rancher server cluster"
|
|
default = "v1.31.2+k3s1"
|
|
}
|