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
+20
View File
@@ -0,0 +1,20 @@
terraform {
required_providers {
nubes = {
source = "terra.k8c.ru/nubes/nubes"
version = "2.1.12"
}
}
}
variable "api_token" {
type = string
sensitive = true
description = "Nubes API token"
}
provider "nubes" {
api_token = var.api_token
api_endpoint = "https://deck-api.ngcloud.ru/api/v1/index.cfm"
}