fix: add versions.tf and fix tofu fmt for pre-commit
ci/woodpecker/pr/pre-commit Pipeline was successful
ci/woodpecker/pr/plan Pipeline failed

Add required_providers block so tofu validate works in the module
directory. Fix alignment from tofu fmt.
This commit is contained in:
2026-06-29 23:26:13 +10:00
parent 267da8ffab
commit 482d6f5ee6
2 changed files with 16 additions and 7 deletions
+9
View File
@@ -0,0 +1,9 @@
terraform {
required_version = ">= 1.10"
required_providers {
radarr = {
source = "devopsarr/radarr"
version = ">= 2.3.5"
}
}
}