initial commit

This commit is contained in:
2026-06-14 14:21:09 +07:00
commit 054835e2a7
17 changed files with 771 additions and 0 deletions

8
terraform/cloud_image.tf Normal file
View File

@@ -0,0 +1,8 @@
resource "proxmox_download_file" "centos10" {
content_type = "import"
datastore_id = "local"
node_name = var.proxmox_node
url = "https://cloud.centos.org/centos/10-stream/x86_64/images/CentOS-Stream-GenericCloud-10-latest.x86_64.qcow2"
file_name = "centos-stream-10-cloud.qcow2"
overwrite = false
}