5 lines
168 B
Terraform
5 lines
168 B
Terraform
|
|
output "contact_point_ids" {
|
||
|
|
description = "Mapping of contact point names to their IDs"
|
||
|
|
value = { for k, v in grafana_contact_point.contact_points : k => v.id }
|
||
|
|
}
|