Skip to content

Commit 0281fc4

Browse files
fix: Interpolation-only expressions are deprecated
1 parent 15d6364 commit 0281fc4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

proxmox_vm_controlplanes.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ resource "proxmox_virtual_environment_vm" "controlplane" {
1313
disk = each.value.disk
1414
proxmox_node = each.value.node
1515
})
16-
tags = ["${var.cluster.name}"]
16+
tags = [var.cluster.name]
1717
vm_id = each.value.vm_id
1818
machine = "q35"
1919
scsi_hardware = "virtio-scsi-single"

proxmox_vm_worker.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ resource "proxmox_virtual_environment_vm" "worker" {
1313
disk = each.value.disk
1414
proxmox_node = each.value.node
1515
})
16-
tags = ["${var.cluster.name}"]
16+
tags = [var.cluster.name]
1717
vm_id = each.value.vm_id
1818
machine = "q35"
1919
scsi_hardware = "virtio-scsi-single"

0 commit comments

Comments
 (0)