Terraform rules working

This commit is contained in:
2025-05-16 14:00:50 +03:00
commit f4d28d47a9
13 changed files with 857 additions and 0 deletions

8
terraform/outputs.tf Normal file
View File

@@ -0,0 +1,8 @@
output "Master-IPS" {
value = ["${proxmox_vm_qemu.proxmox_vm_master.*.default_ipv4_address}"]
}
output "worker-IPS" {
value = ["${proxmox_vm_qemu.proxmox_vm_workers.*.default_ipv4_address}"]
}