25 lines
804 B
HCL
25 lines
804 B
HCL
output "status_id" {
|
|
description = "id for monitor status"
|
|
value = "${datadog_monitor.status.*.id}"
|
|
}
|
|
|
|
output "sql-database_cpu_id" {
|
|
description = "id for monitor sql-database_cpu"
|
|
value = "${datadog_monitor.sql-database_cpu.*.id}"
|
|
}
|
|
|
|
output "sql-database_free_space_low_id" {
|
|
description = "id for monitor sql-database_free_space_low"
|
|
value = "${datadog_monitor.sql-database_free_space_low.*.id}"
|
|
}
|
|
|
|
output "sql-database_dtu_consumption_high_id" {
|
|
description = "id for monitor sql-database_dtu_consumption_high"
|
|
value = "${datadog_monitor.sql-database_dtu_consumption_high.*.id}"
|
|
}
|
|
|
|
output "sql-database_deadlocks_count_id" {
|
|
description = "id for monitor sql-database_deadlocks_count"
|
|
value = "${datadog_monitor.sql-database_deadlocks_count.*.id}"
|
|
}
|