resource "aws_sns_topic" "this" {
  name              = var.name
  kms_master_key_id = var.sns_kms_key_arn
  tags              = var.tags
}

resource "aws_sns_topic_subscription" "this" {
  for_each  = toset(var.notify_emails)
  topic_arn = aws_sns_topic.this.arn
  endpoint  = each.value
  protocol  = "email"
}
