feat: working terraform configuration

This commit is contained in:
2026-08-13 15:58:13 +02:00
parent 1301b05977
commit 614a529af5
3 changed files with 138 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
terraform {
required_version = ">= 1.0.0"
required_providers {
ovh = {
source = "ovh/ovh"
version = "~> 2.19.0"
}
}
}
provider "ovh" {
endpoint = var.ovh_endpoint
application_key = var.ovh_application_key
application_secret = var.ovh_application_secret
consumer_key = var.ovh_consumer_key
}