Add script_mauroterraform_20260805_084818.tf

This commit is contained in:
gitops_test 2026-08-05 08:48:18 +00:00
parent dfd79530ef
commit 48a7d464c6

View File

@ -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'"
}
}