Initialisation de la structure Infra-Lab
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
output "vm_name" {
|
||||
description = "Nom de la machine virtuelle"
|
||||
value = proxmox_vm_qemu.docker_nodes[count.index].name
|
||||
}
|
||||
|
||||
output "vm_private_ip" {
|
||||
description = "Adresse IP privée de la machine virtuelle"
|
||||
value = proxmox_vm_qemu.docker_nodes[count.index].default_ipv4_address
|
||||
}
|
||||
|
||||
/* output "vm_public_ip" {
|
||||
description = "Adresse IP publique de la machine virtuelle"
|
||||
value = azurerm_public_ip.public_ip.ip_address
|
||||
} */
|
||||
|
||||
output "vm_id" {
|
||||
description = "Identifiant unique de la machine virtuelle"
|
||||
value = proxmox_vm_qemu.docker_nodes[count.index].id
|
||||
}
|
||||
|
||||
/* output "admin_username" {
|
||||
description = "Nom d'utilisateur administrateur"
|
||||
value = proxmox_vm_qemu.docker_nodes.admin_username
|
||||
} */
|
||||
Reference in New Issue
Block a user