feat: fully vibecoded configuration

This commit is contained in:
2026-08-12 15:01:40 +02:00
parent 1301b05977
commit b9e736cd80
9 changed files with 399 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
terraform {
required_version = ">= 1.3.0"
required_providers {
ovh = {
source = "ovh/ovh"
version = "~> 0.43.0"
}
}
backend "http" {} # Allows local and Gitea Actions to share state securely
}
provider "ovh" {
endpoint = var.ovh_endpoint
application_key = var.ovh_application_key
application_secret = var.ovh_application_secret
consumer_key = var.ovh_consumer_key
}