feat: terraform configuration for classic VPS

This commit is contained in:
2026-08-13 13:23:05 +02:00
parent 1301b05977
commit dd0351ad49
3 changed files with 84 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
terraform {
required_providers {
ovh = {
source = "ovh/ovh"
}
}
}
provider "ovh" {
endpoint = var.ovh_endpoint
application_key = var.ovh_application_key
application_secret = var.ovh_application_secret
consumer_key = var.ovh_consumer_key
}