Skip to content

Commit

Permalink
add managed_by_iac tag (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
james-otten authored Oct 6, 2024
1 parent 2e96eec commit e40f157
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion terraform/mesh_cluster/lb.tf
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ resource "proxmox_vm_qemu" "k8s-lb" {
type = "socket"
}

tags = "mesh${var.mesh_env_name}"
tags = "mesh${var.mesh_env_name};managed_by_iac"

lifecycle {
ignore_changes = [
Expand Down
2 changes: 1 addition & 1 deletion terraform/mesh_cluster/mgr.tf
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ resource "proxmox_vm_qemu" "meshmgr" {
type = "socket"
}

tags = "mesh${var.mesh_env_name}"
tags = "mesh${var.mesh_env_name};managed_by_iac"

lifecycle {
ignore_changes = [
Expand Down
2 changes: 1 addition & 1 deletion terraform/mesh_cluster/workers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ resource "proxmox_vm_qemu" "meshwkr" {
type = "socket"
}

tags = "mesh${var.mesh_env_name}"
tags = "mesh${var.mesh_env_name};managed_by_iac"

lifecycle {
ignore_changes = [
Expand Down

0 comments on commit e40f157

Please sign in to comment.