Se connecte à la machine on-premise via SSH et installe k3s single-node puis instancie le module. apply reste à faire une fois la machine prête.
40 lines
1.1 KiB
Terraform
40 lines
1.1 KiB
Terraform
variable "ssh_host" {
|
|
type = string
|
|
description = "Adresse IP ou nom d'hote de la machine on-premise cible."
|
|
}
|
|
|
|
variable "ssh_port" {
|
|
type = number
|
|
description = "Port SSH de la machine cible."
|
|
default = 22
|
|
}
|
|
|
|
variable "ssh_user" {
|
|
type = string
|
|
description = "Utilisateur SSH. Si different de root, les commandes d'installation sont prefixees par sudo."
|
|
default = "root"
|
|
}
|
|
|
|
variable "ssh_private_key_path" {
|
|
type = string
|
|
description = "Chemin local vers la cle privee SSH utilisee pour se connecter a la machine cible."
|
|
sensitive = true
|
|
}
|
|
|
|
variable "k3s_version" {
|
|
type = string
|
|
description = "Version k3s a installer (ex: v1.31.2+k3s1). Chaine vide = derniere version stable."
|
|
default = ""
|
|
}
|
|
|
|
variable "k3s_disable_components" {
|
|
type = list(string)
|
|
description = "Composants embarques a desactiver a l'installation (ex: traefik, servicelb)."
|
|
default = ["traefik"]
|
|
}
|
|
|
|
variable "kubeconfig_output_path" {
|
|
type = string
|
|
description = "Chemin local ou ecrire le kubeconfig recupere apres installation."
|
|
}
|