Files
tf_provider/TEST_STAND/buck0/main.tf
T
“Naeel” 0c8223dd11 docs: HOWTO for cloud devops + update TEST_STAND manifests for new API Gateway
- HOWTO_IMPLEMENT_NEW_CLOUD_SERVICE.md: rules for implementing new managed services
  (naming, params, map-fixed blocks, operations, subresources, validation, checklist)
- HOWTO_ADD_NEW_SERVICE.md: how to add service to terraform provider pipeline
- TEST_STAND/*/main.tf: version 5.0.57, api_endpoint -> lk-api-gateway-test
- TEST_STAND/POSTGRES/resources.tf: rewritten for new map-fixed param structure
2026-07-02 17:38:42 +04:00

23 lines
761 B
Terraform

terraform {
required_providers {
nubes = {
source = "terra.k8c.ru/nubes-test/nubes"
version = "5.0.57"
}
}
}
provider "nubes" {
api_token = var.api_token
api_endpoint = "https://lk-api-gateway-test.ngcloud.ru/api/v1/svc"
insecure = true
}
# S3 bucket — замени "buck0" на своё имя везде ниже
resource "nubes_s3bucket" "bukka" { # ← замени buck0 на своё имя ресурса
resource_name = "Бакет тест1" # ← замени buck0 на своё имя ресурса
s3_user_uid = "naeel-s3"
# s3_user_uid = var.s3_user_uid
bucket_name = "buck0" # ← замени buck0 на своё имя бакета
}