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.
41 lines
982 B
Terraform
41 lines
982 B
Terraform
variable "ssh_host" {
|
|
type = string
|
|
description = "Adresse IP ou nom d'hote du serveur on-premise de l'ecole."
|
|
}
|
|
|
|
variable "ssh_port" {
|
|
type = number
|
|
description = "Port SSH du serveur."
|
|
default = 22
|
|
}
|
|
|
|
variable "ssh_user" {
|
|
type = string
|
|
description = "Utilisateur SSH utilise pour l'installation."
|
|
default = "root"
|
|
}
|
|
|
|
variable "ssh_private_key_path" {
|
|
type = string
|
|
description = "Chemin local vers la cle privee SSH."
|
|
sensitive = true
|
|
}
|
|
|
|
variable "k3s_version" {
|
|
type = string
|
|
description = "Version k3s a installer. Chaine vide = derniere version stable."
|
|
default = ""
|
|
}
|
|
|
|
variable "k3s_disable_components" {
|
|
type = list(string)
|
|
description = "Composants embarques k3s a desactiver."
|
|
default = ["traefik"]
|
|
}
|
|
|
|
variable "kubeconfig_output_path" {
|
|
type = string
|
|
description = "Chemin local ou ecrire le kubeconfig recupere apres installation."
|
|
default = "./kubeconfig"
|
|
}
|