From 44beb3a07c849a1521385e5e381606a8e6bacbf1 Mon Sep 17 00:00:00 2001 From: gitops_test Date: Mon, 27 Jul 2026 13:54:20 +0000 Subject: [PATCH] Add script1_20260727_135420.tf --- script1_20260727_135420.tf | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 script1_20260727_135420.tf diff --git a/script1_20260727_135420.tf b/script1_20260727_135420.tf new file mode 100644 index 0000000..26fc1b9 --- /dev/null +++ b/script1_20260727_135420.tf @@ -0,0 +1,19 @@ +terraform { + required_providers { + ovh = { + source = "ovh/ovh" + version = ">= 0.24.0" + } + } +} + +provider "ovh" { + endpoint = "ovh-eu" +} + +# Dummy resource (safe for testing parsing, not real deploy) +resource "null_resource" "example" { + provisioner "local-exec" { + command = "echo 'Terraform script executed'" + } +} \ No newline at end of file