feat: Create skeleton for terraform provisioning role

The terraform module does not expect its file contents (project_path) in
the 'files/' folder like the core roles, instead looking for it relative
to the _invocation_ pwd.
So, for now it just resides in the root level of the repository and may
be moved from there to wherever it is more pertinent.

Additionally, we check for the existence of the OpenTofu binary (tofu),
and prefer that if it exists. Otherwise we fall back to the Terraform
binary.
This commit is contained in:
Marty Oehme 2025-11-20 21:27:06 +01:00
parent 2957b58491
commit 40b687a3f3
Signed by: Marty
GPG key ID: 4E535BC19C61886E
3 changed files with 38 additions and 1 deletions

5
tofu/main.tf Normal file
View file

@ -0,0 +1,5 @@
output "my_debug_output" {
description = "just debuggin"
value = 42
}