Skip to content

Commit 7cfbcc7

Browse files
committedAug 11, 2024
fixing broken URL for template
1 parent cb5835e commit 7cfbcc7

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed
 

‎terraform/ubuntu22-template.tf

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ resource "proxmox_virtual_environment_vm" "Ubuntu-22-Template" {
88

99
disk {
1010
datastore_id = "Fast2Tb"
11-
file_id = proxmox_virtual_environment_download_file.ubuntu_cloud_image_22.id
11+
file_id = "local:iso/jammy-server-cloudimg-amd64.img"
1212
interface = "scsi0"
1313
size = 4
1414
}
@@ -38,11 +38,3 @@ vga {
3838
}
3939

4040
}
41-
42-
43-
resource "proxmox_virtual_environment_download_file" "ubuntu_cloud_image_22" {
44-
content_type = "iso"
45-
datastore_id = "local"
46-
node_name = "prox"
47-
url = "https://cloud-images.ubuntu.com/jammy/20240720/jammy-server-cloudimg-amd64.img"
48-
}

‎terraform/windows.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ resource "proxmox_virtual_environment_vm" "Windows11" {
33
node_name = "pve2"
44
vm_id = 250
55
tags = ["tofu"]
6-
started = true
6+
started = false
77
bios = "ovmf"
88
machine = "q35"
99

0 commit comments

Comments
 (0)
Please sign in to comment.