Initialisation de la structure Infra-Lab

This commit is contained in:
2026-05-24 12:59:04 +02:00
commit fed8d42171
21 changed files with 541 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
# Accès SSH
variable "admin_username" {
description = "Nom d'utilisateur pour se connecter à la VM"
type = string
default = "admin.almeyric"
}
/* variable "ssh_public_key" {
description = "Clé publique SSH"
type = string
sensitive = true
} */
# Tag environnement
variable "environment_tag" {
description = "Indique l'environnement de déploiement (dev, test, prod)"
type = string
default = "test"
}