sky-lattice/blueprint/modules/monitoring/main.tf

21 lines
298 B
Terraform
Raw Normal View History

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}"]
}