proxmox-terraform-bpg-freeb.../files.tf

23 lines
606 B
Terraform
Raw Permalink Normal View History

resource "proxmox_virtual_environment_file" "freebsd14_cloud" {
content_type = "iso"
datastore_id = "local"
node_name = "virt01"
source_file {
path = "https://cdn.gyptazy.ch/files/amd64/freebsd/images/cloud/freebsd-14.0-ufs-2024-05-04.qcow2"
file_name = "freebsd-14.0-ufs-2024-05-04.img"
#checksum = "f472fa7af26aae23fdc92f4a729f083a6a10ce43b1f2049573382bc755c81750"
}
}
resource "proxmox_virtual_environment_file" "cloud_config" {
content_type = "snippets"
datastore_id = "local"
node_name = "virt01"
source_file {
path = "cloud-init/user-data.yml"
}
}