Add terraform/main.tf

This commit is contained in:
2026-02-14 22:35:08 +01:00
parent d024402e85
commit 735bc3c6ca

9
terraform/main.tf Normal file
View File

@@ -0,0 +1,9 @@
terraform {
required_version = ">= 1.0"
}
# Geen cloud nodig — alleen local provider
resource "local_file" "test" {
content = "Hello from Terraform 🚀"
filename = "${path.module}/hello.txt"
}