hashicorp / terraform-provider-google

Terraform Provider for Google Cloud Platform
https://registry.terraform.io/providers/hashicorp/google/latest/docs
Mozilla Public License 2.0
2.36k stars 1.75k forks source link

Add support for Error Reporting notification channels #12068

Open gnarea opened 2 years ago

gnarea commented 2 years ago

Community Note

Description

The Error Reporting service seems to be unsupported at the moment, which means we can't associate existing notification channels to it, so that we're automatically notified when an error occurs.

New or Affected Resource(s)

Potential Terraform Configuration

resource "google_monitoring_notification_channel" "foo" {
  type = "email"
  labels = {
    email_address = "foo@example.com"
  }
}

resource "google_error_reporting_notification_channel" "foo" {
  notification_channel = google_monitoring_notification_channel.foo.name
}

References

bhaidar commented 2 years ago

+1

harrison-carter commented 1 year ago

๐Ÿ‘

eriksw commented 1 year ago

What is this blocked on? Is this simply a matter of implementing support for an existing API in the provider code, or is there more to it?

melinath commented 9 months ago

Marking as feature request since there doesn't seem to currently be an API for this.