FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

aws_ses_receipt_rule

Provides an SES receipt rule resource

Example Usage

# Add a header to the email and store it in S3
resource "aws_ses_receipt_rule" "store" {
  name = "store"
  rule_set_name = "default-rule-set"
  recipients = ["[email protected]"]
  enabled = true
  scan_enabled = true

  add_header_action {
    header_name = "Custom-Header"
    header_value = "Added by SES"
  }

  s3_action {
    bucket_name = "emails"
  }
}

Argument Reference

The following arguments are supported:

Add header actions support the following:

Bounce actions support the following:

Lambda actions support the following:

S3 actions support the following:

SNS actions support the following:

Stop actions support the following:

WorkMail actions support the following:


See the source of this document at Terraform.io