Skip to content

Commit be3be5a

Browse files
chrisbloerobg-test
authored andcommitted
README updates
1 parent 680d6ca commit be3be5a

3 files changed

Lines changed: 11 additions & 6 deletions

File tree

infrastructure/modules/ses/README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,20 +43,24 @@ module "ses_identity" {
4343
| Name | Type |
4444
|------|------|
4545
| [aws_route53_record.ndr_ses_dkim_record](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/route53_record) | resource |
46+
| [aws_route53_record.ses_mail_from_mx](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/route53_record) | resource |
47+
| [aws_route53_record.ses_mail_from_spf](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/route53_record) | resource |
4648
| [aws_ses_domain_dkim.ndr_dkim](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ses_domain_dkim) | resource |
4749
| [aws_ses_domain_identity.ndr_ses](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ses_domain_identity) | resource |
4850
| [aws_ses_domain_identity_verification.ndr_ses_domain_verification](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ses_domain_identity_verification) | resource |
51+
| [aws_ses_domain_mail_from.reporting](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ses_domain_mail_from) | resource |
4952

5053
## Inputs
5154

5255
| Name | Description | Type | Default | Required |
5356
|------|-------------|------|---------|:--------:|
5457
| <a name="input_domain"></a> [domain](#input\_domain) | The root domain name to be registered with SES and used for verification. | `string` | n/a | yes |
55-
| <a name="input_domain_prefix"></a> [domain\_prefix](#input\_domain\_prefix) | The subdomain or prefix used to construct the full SES identity domain. | `string` | n/a | yes |
5658
| <a name="input_enable"></a> [enable](#input\_enable) | Whether to enable the creation of SES identity, DKIM, and DNS records. | `bool` | n/a | yes |
5759
| <a name="input_zone_id"></a> [zone\_id](#input\_zone\_id) | The Route53 hosted zone ID where DNS verification records will be created. | `string` | n/a | yes |
5860

5961
## Outputs
6062

61-
No outputs.
63+
| Name | Description |
64+
|------|-------------|
65+
| <a name="output_report_email_address"></a> [report\_email\_address](#output\_report\_email\_address) | n/a |
6266
<!-- END_TF_DOCS -->

infrastructure/modules/sns/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ module "sns_topic" {
8282
| [aws_sns_topic_policy.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/sns_topic_policy) | resource |
8383
| [aws_sns_topic_subscription.sns_subscription_list](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/sns_topic_subscription) | resource |
8484
| [aws_sns_topic_subscription.sns_subscription_single](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/sns_topic_subscription) | resource |
85+
| [aws_caller_identity.current](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/caller_identity) | data source |
8586

8687
## Inputs
8788

infrastructure/ses.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module "ses" {
2-
source = "./modules/ses"
3-
domain = var.domain
4-
zone_id = module.route53_fargate_ui.zone_id
5-
enable = !local.is_sandbox
2+
source = "./modules/ses"
3+
domain = var.domain
4+
zone_id = module.route53_fargate_ui.zone_id
5+
enable = !local.is_sandbox
66
}

0 commit comments

Comments
 (0)