fix: add terraform.tf for pre-commit validation
ci/woodpecker/pr/pre-commit Pipeline failed
ci/woodpecker/pr/plan Pipeline failed

Required for tofu-validate and tflint to work standalone
without the terragrunt-generated backend.tf.
This commit is contained in:
2026-06-11 23:25:32 +10:00
parent 1b127941f8
commit 6203e4d0e2
+13
View File
@@ -0,0 +1,13 @@
terraform {
required_version = ">= 1.10"
required_providers {
gitea = {
source = "go-gitea/gitea"
version = "0.7.0"
}
woodpecker = {
source = "Kichiyaki/woodpecker"
version = "0.5.0"
}
}
}