sky-lattice/blueprint/modules/monitoring/main.tf
VG 611ad214fe Initial Sky Lattice scaffold: blueprint, platformctl, and docs.
Encode intent/decision/plan workflow for Snowflake platform delivery so engagements share a durable recipe instead of one-off LLM chats.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-15 01:48:36 -04:00

21 lines
298 B
HCL

variable "prefix" {
type = string
}
variable "credit_quota" {
type = number
default = 100
}
locals {
monitor_name = "${var.prefix}_MONITOR"
}
output "resource_monitor" {
value = local.monitor_name
}
output "planned_objects" {
value = ["resource_monitor:${local.monitor_name}"]
}