fix(docs): remove stand-specific hardcodes

This commit is contained in:
“Naeel”
2026-09-03 16:14:28 +03:00
parent 6bf514e03a
commit aa0f7f6402
7 changed files with 170 additions and 51 deletions
+3 -3
View File
@@ -27,8 +27,8 @@ s3_name = "my-s3" # ИМЯ экземпляра S3 (не UUID
terraform {
required_providers {
nubes = {
source = "tf-registry.containerk8s.services.ngcloud.ru/nubes-test/nubes"
version = "5.0.5"
source = "{{PROVIDER_SOURCE}}"
version = "{{VERSION}}"
}
}
}
@@ -39,7 +39,7 @@ variable "s3_name" { type = string }
provider "nubes" {
api_token = var.api_token
api_endpoint = "https://lk-api-gateway-test.ngcloud.ru/api/v1/svc"
api_endpoint = "{{NUBES_API_ENDPOINT}}"
}
```