Skip to content

Commit 6563afb

Browse files
authored
Pin proxy image and upgrade provider (#13)
* Pin proxy image version & upgrage provider * Pin proxy image version & upgrage provider
1 parent 4bcb122 commit 6563afb

File tree

4 files changed

+12
-13
lines changed

4 files changed

+12
-13
lines changed

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ terraform {
77
}
88
proxmox = {
99
source = "bpg/proxmox"
10-
version = "0.65.0"
10+
version = "0.66.3"
1111
}
1212
}
1313
}

modules/domain/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
proxmox = {
44
source = "bpg/proxmox"
5-
version = "0.65.0"
5+
version = "0.66.3"
66
}
77
}
88
}

modules/proxy/main.tf

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
proxmox = {
44
source = "bpg/proxmox"
5-
version = "0.65.0"
5+
version = "0.66.3"
66
}
77
}
88
}
@@ -44,10 +44,14 @@ resource "proxmox_virtual_environment_file" "cloud_config" {
4444
}
4545

4646
resource "proxmox_virtual_environment_download_file" "ubuntu_cloud_image" {
47-
content_type = "iso"
48-
datastore_id = "local"
49-
node_name = var.TARGET_NODE
50-
url = "https://cloud-images.ubuntu.com/noble/current/noble-server-cloudimg-amd64.img"
47+
content_type = "iso"
48+
datastore_id = "local"
49+
node_name = var.TARGET_NODE
50+
url = "https://cloud-images.ubuntu.com/oracular/20241109/oracular-server-cloudimg-amd64.img"
51+
checksum = "05bbfe57d7701c685d8c65f4d34cebe947bc89e3509c4d8a2b9c77f39e91f3ca"
52+
checksum_algorithm = "sha256"
53+
upload_timeout = 1000
54+
overwrite = false
5155
}
5256

5357
resource "proxmox_virtual_environment_vm" "node" {

scripts/versions.sh

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,4 @@ jq -n --arg intel_ucode_version "$intel_ucode_version"\
103103
--arg amd_ucode_version "$amd_ucode_version" \
104104
--arg qemu_ga_version "$qemu_ga_version" \
105105
--arg imager_version "$imager_version" \
106-
'{"intel_ucode_version":$intel_ucode_version, "amd_ucode_version":$amd_ucode_version, "qemu_ga_version":$qemu_ga_version, "imager_version":$imager_version}'
107-
108-
# jq -n --arg intel_ucode_version "$intel_ucode_version"\
109-
# --arg amd_ucode_version "$amd_ucode_version" \
110-
# --arg qemu_ga_version "$qemu_ga_version" \
111-
# '{"intel_ucode_version":$intel_ucode_version, "amd_ucode_version":$amd_ucode_version, "qemu_ga_version":$qemu_ga_version, "imager_version": "v1.5.0"}'
106+
'{"intel_ucode_version":$intel_ucode_version, "amd_ucode_version":$amd_ucode_version, "qemu_ga_version":$qemu_ga_version, "imager_version":$imager_version}'

0 commit comments

Comments
 (0)