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