Opinionated.tf/docker/config/debug.tf

20 lines
549 B
Terraform
Raw Permalink Normal View History

2025-04-03 16:17:38 +00:00
variable "debug" {
type = bool
default = true
description = "Emit debug files in .debug directory"
}
variable "debug_path" {
type = string
description = "Path to write debug files to"
default = null
}
locals {
debug_path = var.debug_path != null ? var.debug_path : "${path.root}/.debug/docker/configs/${var.stack_name}"
2025-04-03 16:17:38 +00:00
}
resource "local_file" "config" {
count = var.debug ? 1 : 0
content = var.value
filename = "${local.debug_path}/${local.file_name}"
file_permission = "0600"
}