From 7d446977a5ee9ab2ddc5b3a0b3cfbe9fbf27eb0e Mon Sep 17 00:00:00 2001 From: Repinoid Date: Mon, 21 Sep 2026 12:07:06 +0300 Subject: [PATCH] Fix FullPipe VDC example placeholders --- DEV_STAND/FullPipe/terraform.tfvars.example | 4 ++-- DEV_STAND/FullPipe/variables.tf | 8 ++++---- DEV_STAND/FullPipe/versions.tf | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/DEV_STAND/FullPipe/terraform.tfvars.example b/DEV_STAND/FullPipe/terraform.tfvars.example index ccd199f..aa583d5 100644 --- a/DEV_STAND/FullPipe/terraform.tfvars.example +++ b/DEV_STAND/FullPipe/terraform.tfvars.example @@ -4,8 +4,8 @@ api_token = "ВАШ_ТОКЕН_ИЗ_ЛК" organization = "kontora" vdc_resource_name = "fullpipe-vdc" -vdc_network_provider = "default" -vdc_provider_vdc = "fast-2.8" +# vdc_network_provider = "<взять из текущей страницы ЛК>" +# vdc_provider_vdc = "<взять из текущей страницы ЛК>" vdc_cpu_allocated = 8 vdc_cpu_guaranteed = 0 vdc_mem_allocated = 32 diff --git a/DEV_STAND/FullPipe/variables.tf b/DEV_STAND/FullPipe/variables.tf index 885b55a..685d399 100644 --- a/DEV_STAND/FullPipe/variables.tf +++ b/DEV_STAND/FullPipe/variables.tf @@ -24,14 +24,14 @@ variable "vdc_resource_name" { variable "vdc_network_provider" { type = string - default = "default" - description = "Сетевой провайдер (неизменяемый)" + default = null + description = "Сетевой провайдер. Заполнить значением из текущей страницы ЛК" } variable "vdc_provider_vdc" { type = string - default = "fast-2.8" - description = "Профиль Provider VDC (неизменяемый)" + default = null + description = "Provider VDC. Заполнить значением из текущей страницы ЛК" } variable "vdc_cpu_allocated" { diff --git a/DEV_STAND/FullPipe/versions.tf b/DEV_STAND/FullPipe/versions.tf index 1698b11..46f8439 100644 --- a/DEV_STAND/FullPipe/versions.tf +++ b/DEV_STAND/FullPipe/versions.tf @@ -4,7 +4,7 @@ terraform { required_providers { nubes = { source = "tf-registry.containerk8s.services.ngcloud.ru/nubes-dev/nubes" - version = "2.0.2" + version = "2.0.3" } } }