terraform { required_providers { nubes = { source = "tf-registry.containerk8s.services.ngcloud.ru/nubes-test/nubes" version = "3.0.0" } } } variable "api_token" { type = string sensitive = true description = "Nubes API token" } variable "realm" { type = string description = "resource_realm parameter for all resources" } variable "s3_name" { type = string description = "S3 user name for backups" } provider "nubes" { api_token = var.api_token api_endpoint = "https://lk-api-gateway-dev.ngcloud.ru/api/v1/svc" }