add: stand configs

This commit is contained in:
“Naeel”
2026-06-30 15:46:24 +04:00
parent ca276d200f
commit 1a52506fb1
91 changed files with 10766 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
// Фиксируем провайдер и версию, чтобы поведение было стабильным.
terraform {
required_providers {
nubes = {
source = "terra.k8c.ru/nubes/nubes"
version = "2.1.10"
}
}
}
// Провайдер Nubes для создания ресурсов.
provider "nubes" {
api_token = var.api_token
api_endpoint = "https://deck-api.ngcloud.ru/api/v1/index.cfm"
}
// Токен доступа к Nubes API.
variable "api_token" {
type = string
sensitive = true
description = "Nubes API token"
}