Add bogdan3_20260804_071519.TF

This commit is contained in:
gitops_test 2026-08-04 07:15:19 +00:00
parent 722b775698
commit 5513b2b554

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