Skip to content

Commit 9240ff3

Browse files
Merge pull request #63 from pascalinthecloud/58-add-tags-and-description-to-proxmox-vms
58 add tags and description to proxmox vms
2 parents bc18cff + 2d02fb3 commit 9240ff3

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
@@ -3,7 +3,7 @@ resource "proxmox_virtual_environment_vm" "controlplane" {
33

44
node_name = each.value.node
55
name = each.key
6-
description = templatefile("${path.module}/templates/description.tmpl", {
6+
description = templatefile("${path.module}/templates/description.tftpl", {
77
cluster_name = var.cluster.name,
88
node_name = each.key
99
subnet = "${each.value.ip_address}/${each.value.subnet}"

proxmox_vm_worker.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ resource "proxmox_virtual_environment_vm" "worker" {
33

44
node_name = each.value.node
55
name = each.key
6-
description = templatefile("${path.module}/templates/description.tmpl", {
6+
description = templatefile("${path.module}/templates/description.tftpl", {
77
cluster_name = var.cluster.name,
88
node_name = each.key
99
subnet = "${each.value.ip_address}/${each.value.subnet}"

0 commit comments

Comments
 (0)