Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ terraform {
}
proxmox = {
source = "bpg/proxmox"
version = "0.65.0"
version = "0.66.3"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion modules/domain/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
proxmox = {
source = "bpg/proxmox"
version = "0.65.0"
version = "0.66.3"
}
}
}
Expand Down
14 changes: 9 additions & 5 deletions modules/proxy/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
proxmox = {
source = "bpg/proxmox"
version = "0.65.0"
version = "0.66.3"
}
}
}
Expand Down Expand Up @@ -44,10 +44,14 @@ resource "proxmox_virtual_environment_file" "cloud_config" {
}

resource "proxmox_virtual_environment_download_file" "ubuntu_cloud_image" {
content_type = "iso"
datastore_id = "local"
node_name = var.TARGET_NODE
url = "https://cloud-images.ubuntu.com/noble/current/noble-server-cloudimg-amd64.img"
content_type = "iso"
datastore_id = "local"
node_name = var.TARGET_NODE
url = "https://cloud-images.ubuntu.com/oracular/20241109/oracular-server-cloudimg-amd64.img"
checksum = "05bbfe57d7701c685d8c65f4d34cebe947bc89e3509c4d8a2b9c77f39e91f3ca"
checksum_algorithm = "sha256"
upload_timeout = 1000
overwrite = false
}

resource "proxmox_virtual_environment_vm" "node" {
Expand Down
7 changes: 1 addition & 6 deletions scripts/versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,4 @@ jq -n --arg intel_ucode_version "$intel_ucode_version"\
--arg amd_ucode_version "$amd_ucode_version" \
--arg qemu_ga_version "$qemu_ga_version" \
--arg imager_version "$imager_version" \
'{"intel_ucode_version":$intel_ucode_version, "amd_ucode_version":$amd_ucode_version, "qemu_ga_version":$qemu_ga_version, "imager_version":$imager_version}'

# jq -n --arg intel_ucode_version "$intel_ucode_version"\
# --arg amd_ucode_version "$amd_ucode_version" \
# --arg qemu_ga_version "$qemu_ga_version" \
# '{"intel_ucode_version":$intel_ucode_version, "amd_ucode_version":$amd_ucode_version, "qemu_ga_version":$qemu_ga_version, "imager_version": "v1.5.0"}'
'{"intel_ucode_version":$intel_ucode_version, "amd_ucode_version":$amd_ucode_version, "qemu_ga_version":$qemu_ga_version, "imager_version":$imager_version}'
Loading