examples: DEVfromGround vc_org, NODEJS, VM, POSTGRES updates

This commit is contained in:
Naeel
2026-03-26 08:33:03 +03:00
parent 2b03ba520e
commit 547994dc55
11 changed files with 216 additions and 217 deletions
+6 -2
View File
@@ -9,7 +9,9 @@ resource "sless_service" "calc_python" {
name = "calc-python"
runtime = "python3.11"
entrypoint = "handler.handler"
source_dir = "${path.module}/code/calc-python"
memory_mb = 128
timeout_sec = 30
source_dir = "${path.module}/code/calc-python"
}
output "calc_python_url" {
@@ -23,7 +25,9 @@ resource "sless_service" "calc_node" {
name = "calc-node"
runtime = "nodejs20"
entrypoint = "handler.handler"
source_dir = "${path.module}/code/calc-node"
memory_mb = 128
timeout_sec = 30
source_dir = "${path.module}/code/calc-node"
}
output "calc_node_url" {