mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-06-29 18:21:10 +00:00
96 lines
2.0 KiB
HCL
96 lines
2.0 KiB
HCL
resource "proxmox_virtual_environment_container" "example_template" {
|
|
description = "Managed by Terraform"
|
|
|
|
start_on_boot = "true"
|
|
|
|
disk {
|
|
datastore_id = "local-lvm"
|
|
size = 4
|
|
}
|
|
|
|
mount_point {
|
|
// volume mount
|
|
volume = "local-lvm"
|
|
size = "4G"
|
|
path = "mnt/local"
|
|
}
|
|
|
|
initialization {
|
|
dns {
|
|
servers = ["1.1.1.1", "8.8.8.8"]
|
|
}
|
|
|
|
hostname = "terraform-provider-proxmox-example-lxc-template"
|
|
|
|
ip_config {
|
|
ipv4 {
|
|
address = "dhcp"
|
|
}
|
|
}
|
|
|
|
user_account {
|
|
keys = [trimspace(tls_private_key.example.public_key_openssh)]
|
|
password = "example"
|
|
}
|
|
}
|
|
|
|
network_interface {
|
|
name = "veth0"
|
|
mtu = 1450
|
|
}
|
|
|
|
node_name = data.proxmox_virtual_environment_nodes.example.names[0]
|
|
|
|
operating_system {
|
|
template_file_id = proxmox_virtual_environment_download_file.release_20250610_ubuntu_24_noble_lxc_img.id
|
|
type = "ubuntu"
|
|
}
|
|
|
|
pool_id = proxmox_virtual_environment_pool.example.id
|
|
template = true
|
|
|
|
// use auto-generated vm_id
|
|
|
|
tags = [
|
|
"container",
|
|
"example",
|
|
"terraform",
|
|
]
|
|
|
|
startup {
|
|
order = "3"
|
|
up_delay = "60"
|
|
down_delay = "60"
|
|
}
|
|
}
|
|
|
|
resource "proxmox_virtual_environment_container" "example" {
|
|
disk {
|
|
datastore_id = "local-lvm"
|
|
}
|
|
|
|
clone {
|
|
vm_id = proxmox_virtual_environment_container.example_template.id
|
|
}
|
|
|
|
initialization {
|
|
hostname = "terraform-provider-proxmox-example-lxc"
|
|
}
|
|
|
|
mount_point {
|
|
// bind mount, requires root@pam
|
|
volume = "/mnt/bindmounts/shared"
|
|
path = "/shared"
|
|
}
|
|
|
|
node_name = data.proxmox_virtual_environment_nodes.example.names[0]
|
|
pool_id = proxmox_virtual_environment_pool.example.id
|
|
# Set the protection flag to prevent the deletion/update operations for the container and its disks.
|
|
# protection = true
|
|
vm_id = 2043
|
|
}
|
|
|
|
output "resource_proxmox_virtual_environment_container_example_id" {
|
|
value = proxmox_virtual_environment_container.example.id
|
|
}
|