23 lines
839 B
HCL
23 lines
839 B
HCL
# Создано: 2026-03-23
|
||
# nodejs.tf — ресурс nubes_nodejs: managed Node.js приложение.
|
||
# Параметры взяты из документации terra.k8c.ru/docs/nubes/nubes/5.0.19/30_registry/resources/nodejs_params_create/
|
||
|
||
resource "nubes_nodejs" "app" {
|
||
resource_name = "nodejsdemo1"
|
||
domain = "domma"
|
||
resource_realm = var.realm
|
||
git_path = var.git_path
|
||
app_version = "23"
|
||
resource_c_p_u = 500
|
||
resource_memory = 1024
|
||
resource_instances = 1
|
||
json_env = jsonencode({})
|
||
adopt_existing_on_create = true
|
||
# health_path не задан — используется дефолтный /
|
||
}
|
||
|
||
output "nodejs_domain" {
|
||
description = "Домен развёрнутого Node.js приложения"
|
||
value = nubes_nodejs.app.domain
|
||
}
|