Terraform resource for managing an AWS SESv2 (Simple Email V2) Email Identity Feedback Attributes.
resource "aws_sesv2_email_identity" "example" {
email_identity = "example.com"
}
resource "aws_sesv2_email_identity_feedback_attributes" "example" {
email_identity = aws_sesv2_email_identity.example.email_identity
email_forwarding_enabled = true
}
This resource supports the following arguments:
email_identity
- (Required) The email identity.email_forwarding_enabled
- (Optional) Sets the feedback forwarding configuration for the identity.This resource exports no additional attributes.
In Terraform v1.5.0 and later, use an import
block to import SESv2 (Simple Email V2) Email Identity Feedback Attributes using the email_identity
. For example:
import {
to = aws_sesv2_email_identity_feedback_attributes.example
id = "example.com"
}
Using terraform import
, import SESv2 (Simple Email V2) Email Identity Feedback Attributes using the email_identity
. For example:
% terraform import aws_sesv2_email_identity_feedback_attributes.example example.com