resource "google_pubsub_topic" "bigtable_backups_topic" {
  name = "${local.name_prefix}-bigtable-backup"
  labels = {
    plat_env_project_service = "dlp_prod_by_pubsub"
  }
}

resource "google_pubsub_topic" "stackdriver_notifications_topic" {
  name = "${local.name_prefix}-stackdriver-notification"
  labels = {
    plat_env_project_service = "dlp_prod_by_pubsub"
  }
}

resource "google_project_iam_member" "notifications_topic_publisher" {
  member  = "serviceAccount:service-540286097312@gcp-sa-monitoring-notification.iam.gserviceaccount.com"
  project = local.project_id
  role    = "roles/pubsub.publisher"
}
