diff --git a/examples/lxc_example.tf b/examples/lxc_example.tf index 5217545..4829f18 100644 --- a/examples/lxc_example.tf +++ b/examples/lxc_example.tf @@ -6,7 +6,9 @@ provider "proxmox" { } resource "proxmox_lxc" "lxc-test" { - force = true + features { + nesting = true + } hostname = "terraform-new-container" network { id = 0 @@ -20,4 +22,5 @@ resource "proxmox_lxc" "lxc-test" { pool = "terraform" storage = "local-lvm" target_node = "node-01" + unprivileged = true }