Resource: aws_ses_identity_notification_topic

Resource for managing SES Identity Notification Topics

Example Usage

resource "aws_ses_identity_notification_topic" "test" {
  topic_arn                = aws_sns_topic.example.arn
  notification_type        = "Bounce"
  identity                 = aws_ses_domain_identity.example.domain
  include_original_headers = true
}

Argument Reference

This resource supports the following arguments:

Attribute Reference

This resource exports no additional attributes.

Import

In Terraform v1.5.0 and later, use an import block to import Identity Notification Topics using the ID of the record. The ID is made up as IDENTITY|TYPE where IDENTITY is the SES Identity and TYPE is the Notification Type. For example:

import {
  to = aws_ses_identity_notification_topic.test
  id = "example.com|Bounce"
}

Using terraform import, import Identity Notification Topics using the ID of the record. The ID is made up as IDENTITY|TYPE where IDENTITY is the SES Identity and TYPE is the Notification Type. For example:

% terraform import aws_ses_identity_notification_topic.test 'example.com|Bounce'