Open
Description
Community Note
- Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
- Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
- If you are interested in working on this issue or have submitted a pull request, please leave a comment. If the issue is assigned to the "modular-magician" user, it is either in the process of being autogenerated, or is planned to be autogenerated soon. If the issue is assigned to a user, that user is claiming responsibility for the issue. If the issue is assigned to "hashibot", a community member has claimed the issue already.
Description
Provider lacks resources for enabling Error Reporting Dashboard for specific projects, and configuring notification channels for them.
I would love it to be added.
New or Affected Resource(s)
- google_error_reporting
Potential Terraform Configuration
resource "google_error_reporting" "error_reporting" {
project = var.project_id
enabled = true
alert_strategy {
notification_rate_limit {
period = "300s"
}
}
notification_channels = [google_monitoring_notification_channel.notification_channel_email.id]
}