Fix FullPipe VDC example placeholders

This commit is contained in:
Repinoid
2026-09-21 12:07:06 +03:00
parent 308f92bc37
commit 7d446977a5
3 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -4,8 +4,8 @@ api_token = "ВАШ_ТОКЕН_ИЗ_ЛК"
organization = "kontora" organization = "kontora"
vdc_resource_name = "fullpipe-vdc" vdc_resource_name = "fullpipe-vdc"
vdc_network_provider = "default" # vdc_network_provider = "<взять из текущей страницы ЛК>"
vdc_provider_vdc = "fast-2.8" # vdc_provider_vdc = "<взять из текущей страницы ЛК>"
vdc_cpu_allocated = 8 vdc_cpu_allocated = 8
vdc_cpu_guaranteed = 0 vdc_cpu_guaranteed = 0
vdc_mem_allocated = 32 vdc_mem_allocated = 32
+4 -4
View File
@@ -24,14 +24,14 @@ variable "vdc_resource_name" {
variable "vdc_network_provider" { variable "vdc_network_provider" {
type = string type = string
default = "default" default = null
description = "Сетевой провайдер (неизменяемый)" description = "Сетевой провайдер. Заполнить значением из текущей страницы ЛК"
} }
variable "vdc_provider_vdc" { variable "vdc_provider_vdc" {
type = string type = string
default = "fast-2.8" default = null
description = "Профиль Provider VDC (неизменяемый)" description = "Provider VDC. Заполнить значением из текущей страницы ЛК"
} }
variable "vdc_cpu_allocated" { variable "vdc_cpu_allocated" {
+1 -1
View File
@@ -4,7 +4,7 @@ terraform {
required_providers { required_providers {
nubes = { nubes = {
source = "tf-registry.containerk8s.services.ngcloud.ru/nubes-dev/nubes" source = "tf-registry.containerk8s.services.ngcloud.ru/nubes-dev/nubes"
version = "2.0.2" version = "2.0.3"
} }
} }
} }