feat: add debug logging to nubes provider

This commit is contained in:
Naeel 2026-03-30 09:53:34 +03:00
parent 3978241851
commit 00fce3919a
2 changed files with 2 additions and 1 deletions

View File

@ -204,5 +204,5 @@ terraform destroy
| `vm.tf` | Ресурс ВМ (Ubuntu 22.04) | | `vm.tf` | Ресурс ВМ (Ubuntu 22.04) |
| `sless.tf` | Serverless-джобы для установки ПО | | `sless.tf` | Serverless-джобы для установки ПО |
| `outputs.tf` | Вывод IP-адреса и ID ресурсов | | `outputs.tf` | Вывод IP-адреса и ID ресурсов |
| `vm_key` / `vm_key.pub` | SSH-ключ для доступа к ВМ | | `vm_key` / `vm_key.pub` | SSH-ключ **создаётся вами на Шаге 2**, в git не хранится |
| `functions/` | Код Python-функций для install-джобов | | `functions/` | Код Python-функций для install-джобов |

View File

@ -39,4 +39,5 @@ variable "api_token" {
provider "nubes" { provider "nubes" {
api_token = var.api_token api_token = var.api_token
api_endpoint = "https://deck-api-test.ngcloud.ru/api/v1/index.cfm" api_endpoint = "https://deck-api-test.ngcloud.ru/api/v1/index.cfm"
log_level = "debug" # none | info | debug, default = "none"
} }