Add script11_20260611_093052.tf

This commit is contained in:
gitops_test 2026-06-11 09:30:52 +00:00
parent c652f9510c
commit 94f86dce0b

View File

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