From e4118f72d5e42b5b9f1b499b1fbd145cd40089cd Mon Sep 17 00:00:00 2001 From: Kyle Kotowick Date: Wed, 25 Dec 2024 18:59:18 -0800 Subject: [PATCH] Delete commented code --- outputs.tf | 1 - variables.tf | 4 ---- 2 files changed, 5 deletions(-) diff --git a/outputs.tf b/outputs.tf index d7dbd48..c653073 100644 --- a/outputs.tf +++ b/outputs.tf @@ -11,5 +11,4 @@ output "condition" { output "checked" { description = "Whether the condition has been checked (used for assertion dependencies)." value = var.condition == true ? true : true - //value = local.evaluation == "" ? true : true //var.condition == true ? true : true } diff --git a/variables.tf b/variables.tf index 9ebd4e4..e99decf 100644 --- a/variables.tf +++ b/variables.tf @@ -16,7 +16,3 @@ variable "condition" { error_message = var.error_message } } - -# locals { -# evaluation = var.condition ? "" : SEE_ABOVE_ERROR_MESSAGE(true ? null : "ERROR: ${var.error_message}") -# }