Skip to content

Commit

Permalink
terraform: fix typos in phase subtraction
Browse files Browse the repository at this point in the history
  • Loading branch information
RafDevX authored and mergify[bot] committed Sep 19, 2024
1 parent e4af92b commit d5ced5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/install/main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
locals {
disk_encryption_key_scripts = [for k in var.disk_encryption_key_scripts : "\"${k.path}\" \"${k.script}\""]
removed_phases = setunion(var.stop_after_disko ? ["install"] : [], (var.no_reboot ? ["reboot"] : []))
phases = setsubstract(var.phases, removed_phases)
phases = setsubtract(var.phases, local.removed_phases)
arguments = jsonencode({
ssh_private_key = var.ssh_private_key
debug_logging = var.debug_logging
Expand Down

0 comments on commit d5ced5d

Please sign in to comment.