From cf3ca2b869f35884dca5cad947acec1ab84db668 Mon Sep 17 00:00:00 2001 From: gitops_test Date: Thu, 11 Jun 2026 14:55:56 +0000 Subject: [PATCH] Add script11_20260611_145556.tf --- script11_20260611_145556.tf | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 script11_20260611_145556.tf diff --git a/script11_20260611_145556.tf b/script11_20260611_145556.tf new file mode 100644 index 0000000..26fc1b9 --- /dev/null +++ b/script11_20260611_145556.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