Provides an SES email identity resource
This resource supports the following arguments:
email
- (Required) The email address to assign to SES.This resource exports the following attributes in addition to the arguments above:
arn
- The ARN of the email identity.resource "aws_ses_email_identity" "example" {
email = "email@example.com"
}
In Terraform v1.5.0 and later, use an import
block to import SES email identities using the email address. For example:
import {
to = aws_ses_email_identity.example
id = "email@example.com"
}
Using terraform import
, import SES email identities using the email address. For example:
% terraform import aws_ses_email_identity.example email@example.com