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>
21 lines
298 B
HCL
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}"]
|
|
}
|