diff options
| author | Kumar Damani <me@kumardamani.net> | 2026-09-14 19:56:22 +0000 |
|---|---|---|
| committer | Kumar Damani <me@kumardamani.net> | 2026-09-14 19:56:22 +0000 |
| commit | b5699e240d3f7aa289d75c531a9ff5e26c4e3760 (patch) | |
| tree | cbf90a217b1ed6bc627c6299e1602f58ae901524 /terraform/main.tf | |
| parent | 4156ff5a73185bf49119733493eb6cd360b8795d (diff) | |
caldav config
Diffstat (limited to 'terraform/main.tf')
| -rwxr-xr-x | terraform/main.tf | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/terraform/main.tf b/terraform/main.tf index a893722..6d5c3e6 100755 --- a/terraform/main.tf +++ b/terraform/main.tf @@ -439,6 +439,41 @@ resource "proxmox_vm_qemu" "photos" { } } +resource "proxmox_vm_qemu" "caldav" { + target_node = "hesh" + name = "caldav" + memory = 512 + start_at_node_boot = true + boot = "order=virtio0;net0" + clone_id = 104 + full_clone = true + scsihw = "virtio-scsi-single" + + startup_shutdown { + order = 4 + } + + cpu { + cores = 1 + } + + disk { + type = "disk" + slot = "virtio0" + size = "10G" + storage = "local-lvm" + format = "raw" + } + + network { + id = 0 + model = "virtio" + bridge = "vmbr1" + tag = 30 + mtu = 1420 + } +} + moved { from = proxmox_lxc.nckumar to = proxmox_lxc.nc_kumar |
