Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[New Resource]: SESv2 Identity to Default Configuration Set association #31408

Open
mkielar opened this issue May 15, 2023 · 1 comment
Open
Labels
new-resource Introduces a new resource. service/sesv2 Issues and PRs that pertain to the sesv2 service.

Comments

@mkielar
Copy link
Contributor

mkielar commented May 15, 2023

Description

Allow attaching default Configuration Set to already existing SES Identity.

I am aware that aws_sesv2_email_identity already exists and allows specifying Default Configuration Sets, but:

  1. I'd like to use this new resource with SES Identities provisioned with SESv1 API (which should be possible) without migrating them to SESv2.
  2. There's API to provision this separately, which - by convention used with other AWS Resources (e.g. S3) - should end up as a dedicated resource.

Requested Resource(s) and/or Data Source(s)

  • aws_email_identity_configuration_set_attributes

Potential Terraform Configuration

resource "aws_sesv2_email_identity" "example" {
  email_identity = "testing@example.com"
}

resource "aws_sesv2_configuration_set" "example" {
  configuration_set_name = "example"
}

# New resource
resource "aws_email_identity_configuration_set_attributes" "example" {
  email_identity         = aws_sesv2_email_identity.example.email_identity
  configuration_set_name = aws_sesv2_configuration_set.example.configuration_set_name
}

References

Would you like to implement a fix?

None

@mkielar mkielar added the needs-triage Waiting for first response or review from a maintainer. label May 15, 2023
@github-actions
Copy link

Community Note

Voting for Prioritization

  • Please vote on this issue by adding a 👍 reaction to the original post to help the community and maintainers prioritize this request.
  • Please see our prioritization guide for information on how we prioritize.
  • Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request.

Volunteering to Work on This Issue

  • If you are interested in working on this issue, please leave a comment.
  • If this would be your first contribution, please review the contribution guide.

@github-actions github-actions bot added the service/sesv2 Issues and PRs that pertain to the sesv2 service. label May 15, 2023
@justinretzolk justinretzolk added new-resource Introduces a new resource. and removed needs-triage Waiting for first response or review from a maintainer. labels May 15, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
new-resource Introduces a new resource. service/sesv2 Issues and PRs that pertain to the sesv2 service.
Projects
None yet
Development

No branches or pull requests

2 participants