Patrick de Ruiter 553f03285a
Some checks failed
Monitors / pre_job (push) Successful in 14s
Monitors / check (push) Failing after 1m30s
Initial commit with README and module files
2025-11-01 10:43:48 +01:00

26 lines
795 B
HCL
Executable File

output "postgresql_cpu_usage_id" {
description = "id for monitor postgresql_cpu_usage"
value = datadog_monitor.postgresql_cpu_usage.*.id
}
output "postgresql_free_storage_id" {
description = "id for monitor postgresql_free_storage"
value = datadog_monitor.postgresql_free_storage.*.id
}
output "postgresql_io_consumption_id" {
description = "id for monitor postgresql_io_consumption"
value = datadog_monitor.postgresql_io_consumption.*.id
}
output "postgresql_memory_usage_id" {
description = "id for monitor postgresql_memory_usage"
value = datadog_monitor.postgresql_memory_usage.*.id
}
output "postgresql_no_connection_id" {
description = "id for monitor postgresql_no_connection"
value = datadog_monitor.postgresql_no_connection.*.id
}