AWS Amazon SES Identity Notification Topic

This page shows how to write Terraform for Amazon SES Identity Notification Topic and write them securely.

aws_ses_identity_notification_topic (Terraform)

The Identity Notification Topic in Amazon SES can be configured in Terraform with the resource name aws_ses_identity_notification_topic. The following sections describe 2 examples of how to use the resource and its parameters.

Example Usage from GitHub

main.tf#L16
resource "aws_ses_identity_notification_topic" "email_bounce_notification" {
  topic_arn                = var.sns_topic_bounce_arn
  notification_type        = "Bounce"
  identity                 = aws_ses_email_identity.verify_email.email
  include_original_headers = true
}
ses.tf#L11
resource "aws_ses_identity_notification_topic" "bounce" {
  provider                 = "aws.oregon"
  identity                 = aws_ses_domain_identity.main.domain
  notification_type        = "Bounce"
  topic_arn                = aws_sns_topic.ses.arn
  include_original_headers = true

Review your Terraform file for AWS best practices

Shisho Cloud, our free checker to make sure your Terraform configuration follows best practices, is available (beta).

Parameters

Explanation in Terraform Registry

Resource for managing SES Identity Notification Topics

CloudFormation Example

CloudFormation code does not have the related resource.

Frequently asked questions

What is AWS Amazon SES Identity Notification Topic?

AWS Amazon SES Identity Notification Topic is a resource for Amazon SES of Amazon Web Service. Settings can be wrote in Terraform.

Where can I find the example code for the AWS Amazon SES Identity Notification Topic?

For Terraform, the koyablue/terraform_single and Tocyuki/terraform-ecs source code examples are useful. See the Terraform Example section for further details.

security-icon

Automate config file reviews on your commits

Fix issues in your infrastructure as code with auto-generated patches.