added: NixOS Template LXC

This commit is contained in:
Vivian 2021-10-17 12:04:23 +02:00
parent 5e407639d5
commit 120ad6fbea
No known key found for this signature in database
GPG key ID: A3923C699D1A3BDA

27
main.tf
View file

@ -9,4 +9,31 @@ terraform {
provider "proxmox" {
pm_api_url = "https://10.42.42.42:8006/api2/json"
pm_tls_insecure = true
}
# For full info see: https://blog.xirion.net/posts/nixos-proxmox-lxc/
resource "proxmox_lxc" "nixos-template" {
target_node = "nuc"
description = "NixOS LXC Template"
hostname = "nixos-template"
ostemplate = "local:vztmpl/nixos-unstable-default_156198829_amd64.tar.xz"
ostype = "unmanaged"
unprivileged = true
features {
nesting = true
}
rootfs {
storage = "local-zfs"
size = "8G"
}
network {
name = "eth0"
bridge = "vmbr0"
ip = "dhcp"
}
}