23 lines
571 B
HCL
23 lines
571 B
HCL
# 2026-03-09
|
|
# notes-list.tf — read-only эндпоинт: возвращает все заметки, сортировка новые первые.
|
|
|
|
resource "sless_function" "notes_list" {
|
|
name = "notes-list"
|
|
runtime = "python3.11"
|
|
entrypoint = "notes_list.list_notes"
|
|
memory_mb = 128
|
|
timeout_sec = 30
|
|
|
|
env_vars = {
|
|
PG_DSN = var.pg_dsn
|
|
}
|
|
|
|
source_dir = "${path.module}/code/notes-list"
|
|
}
|
|
|
|
resource "sless_trigger" "notes_list_http" {
|
|
name = "notes-list-http"
|
|
type = "http"
|
|
function = sless_function.notes_list.name
|
|
}
|