diff --git a/assertion/outputs.tf b/assertion/outputs.tf index 4d86072..59f1d3a 100644 --- a/assertion/outputs.tf +++ b/assertion/outputs.tf @@ -8,13 +8,14 @@ output "condition" { value = var.condition } -data "cloudinit_config" "check" { - part { - content = var.condition - } -} +# data "cloudinit_config" "check" { +# part { +# content = var.condition +# } +# } output "checked" { description = "Whether the condition has passed validation (used for assertion dependencies)." - value = data.cloudinit_config.check.rendered == "" ? true : true + # value = data.cloudinit_config.check.rendered == "" ? true : true + value = var.condition == true ? true : true }