16 lines
381 B
HCL
16 lines
381 B
HCL
output "status_id" {
|
|
description = "id for monitor status"
|
|
value = datadog_monitor.status.*.id
|
|
}
|
|
|
|
output "cpu_percentage_id" {
|
|
description = "id for monitor cpu_percentage"
|
|
value = datadog_monitor.cpu_percentage.*.id
|
|
}
|
|
|
|
output "memory_percentage_id" {
|
|
description = "id for monitor memory_percentage"
|
|
value = datadog_monitor.memory_percentage.*.id
|
|
}
|
|
|