added too much too remeber

This commit is contained in:
Petar Cubela
2025-09-18 22:43:15 +02:00
parent 4025e0fb36
commit b023b1f287
10 changed files with 311 additions and 82 deletions

33
lxc-demo-1.tf Normal file
View File

@@ -0,0 +1,33 @@
# variable "lxc_passwd" {
# type = string
# sensitive = true
# }
#
# resource "proxmox_lxc" "lxc_demo_1" {
# target_node = "pve"
# ostemplate = "local:vztmpl/debian-12-standard_12.7-1_amd64.tar.zst"
# password = var.lxc_passwd
# unprivileged = true
# vmid = "500"
#
# ssh_public_keys = var.ssh_public_key
#
#
# features {
# nesting = true
# }
# hostname = "lxc-demo-1"
#
# network {
# name = "eth1"
# bridge = "vmbr0"
# ip = "dhcp"
# ip6 = "auto"
# }
#
# rootfs {
# storage = "local-lvm"
# size = "8G"
# }
#
# }