Right now, we detect whether terraform or tofu is being used, then we set Terraform Plan or Tofu Plan in the Markdown. It might make sense to allow a person to pass their own value.
Possible considerations:
header: key in .tp.toml
--header via CLI flag
TP_MD_HEADER environment variable
A bit of a tangent, but it may make sense to consider some full-blown templating engine for greater formatting capabilities, but that feels like a tremendous amount of "scope creep". I'm more inclined to just document cat plan.md >> my-other-template.md && gh pr create -F my-other-template.md or something and let folks do their thing there.
Right now, we detect whether
terraformortofuis being used, then we setTerraform PlanorTofu Planin the Markdown. It might make sense to allow a person to pass their own value.Possible considerations:
header:key in.tp.toml--headervia CLI flagTP_MD_HEADERenvironment variableA bit of a tangent, but it may make sense to consider some full-blown templating engine for greater formatting capabilities, but that feels like a tremendous amount of "scope creep". I'm more inclined to just document
cat plan.md >> my-other-template.md && gh pr create -F my-other-template.mdor something and let folks do their thing there.