From 48a7d464c65724512f0d7b6a317fa5186044c850 Mon Sep 17 00:00:00 2001 From: gitops_test Date: Wed, 5 Aug 2026 08:48:18 +0000 Subject: [PATCH] Add script_mauroterraform_20260805_084818.tf --- script_mauroterraform_20260805_084818.tf | 31 ++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 script_mauroterraform_20260805_084818.tf diff --git a/script_mauroterraform_20260805_084818.tf b/script_mauroterraform_20260805_084818.tf new file mode 100644 index 0000000..5e28c2e --- /dev/null +++ b/script_mauroterraform_20260805_084818.tf @@ -0,0 +1,31 @@ +terraform { + required_providers { + ovh = { + source = "ovh/ovh" + version = ">= 0.24.0" + } + null = { + source = "hashicorp/null" + version = ">= 3.2.0" + } + } +} + +provider "ovh" { + endpoint = "ovh-eu" +} + +# Dummy resource for parser testing +resource "null_resource" "example" { + triggers = { + user_data = <<-EOF +#!/bin/bash +echo "Instance initialized" +echo "Hello from Terraform" +EOF + } + + provisioner "local-exec" { + command = "echo 'Terraform script executed'" + } +}