From 5513b2b554fc126580df3f2e536e2ea15febb449 Mon Sep 17 00:00:00 2001 From: gitops_test Date: Tue, 4 Aug 2026 07:15:19 +0000 Subject: [PATCH] Add bogdan3_20260804_071519.TF --- bogdan3_20260804_071519.TF | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 bogdan3_20260804_071519.TF diff --git a/bogdan3_20260804_071519.TF b/bogdan3_20260804_071519.TF new file mode 100644 index 0000000..26fc1b9 --- /dev/null +++ b/bogdan3_20260804_071519.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