filebrowser #1

Merged
polsevev merged 2 commits from filebrowser into master 2024-11-08 18:57:07 +00:00
Showing only changes of commit 66a2d01b38 - Show all commits

46
terraform/arkivet.tf Normal file
View file

@ -0,0 +1,46 @@
resource "proxmox_vm_qemu" "arkivet" {
name = "arkivet"
desc = "arkivet"
target_node = "hyperion"
agent = 1
onboot = true
clone = "VM 9000"
cores = 4
sockets = 1
cpu = "host"
memory = 2048
# Setup the disk
disks {
ide {
ide2 {
cloudinit {
storage = "cronus_backup"
}
}
}
scsi {
scsi0 {
disk {
size = "15G"
storage = "maskin"
}
}
}
}
network {
bridge = "vmbr0"
model = "virtio"
}
scsihw = "virtio-scsi-pci"
os_type = "cloud-init"
ipconfig0 = "ip=192.168.1.55/24,gw=192.168.1.1"
nameserver = "192.168.1.69"
ciuser = "ansible"
sshkeys = var.ssh_public_key
}