Resource: aws_ses_email_identity

Provides an SES email identity resource

Argument Reference

This resource supports the following arguments:

Attribute Reference

This resource exports the following attributes in addition to the arguments above:

Example Usage

resource "aws_ses_email_identity" "example" {
  email = "email@example.com"
}

Import

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