Skip to content

Commit c2e2d40

Browse files
committed
CCM-10296: remove route53 things
1 parent d19a141 commit c2e2d40

File tree

10 files changed

+7
-50
lines changed

10 files changed

+7
-50
lines changed

infrastructure/terraform/components/app/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
| <a name="input_project"></a> [project](#input\_project) | The name of the tfscaffold project | `string` | n/a | yes |
4444
| <a name="input_region"></a> [region](#input\_region) | The AWS Region | `string` | n/a | yes |
4545
| <a name="input_retention_period"></a> [retention\_period](#input\_retention\_period) | Backup Vault Retention Period | `number` | `14` | no |
46+
| <a name="input_ses_domain_name"></a> [ses\_domain\_name](#input\_ses\_domain\_name) | Domain name to use as SES domain identity | `string` | n/a | yes |
4647
| <a name="input_url_prefix"></a> [url\_prefix](#input\_url\_prefix) | The url prefix to use for the deployed branch | `string` | `"main"` | no |
4748
## Modules
4849

infrastructure/terraform/components/app/route53_record_ses_dkim_validation.tf

Lines changed: 0 additions & 11 deletions
This file was deleted.

infrastructure/terraform/components/app/route53_record_ses_dmarc.tf

Lines changed: 0 additions & 9 deletions
This file was deleted.

infrastructure/terraform/components/app/route53_record_ses_mail_from_mx.tf

Lines changed: 0 additions & 7 deletions
This file was deleted.

infrastructure/terraform/components/app/route53_record_ses_mail_from_txt.tf

Lines changed: 0 additions & 7 deletions
This file was deleted.

infrastructure/terraform/components/app/route53_record_ses_validation.tf

Lines changed: 0 additions & 9 deletions
This file was deleted.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
resource "aws_ses_domain_identity" "main" {
2-
domain = local.root_domain_name
2+
domain = var.ses_domain_name
33
}

infrastructure/terraform/components/app/variables.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,3 +211,8 @@ variable "letter_suppliers" {
211211

212212
description = "Letter suppliers enabled in the environment"
213213
}
214+
215+
variable "ses_domain_name" {
216+
type = string
217+
description = "Domain name to use as SES domain identity"
218+
}

infrastructure/terraform/components/sandbox/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ No requirements.
1414
| <a name="input_default_tags"></a> [default\_tags](#input\_default\_tags) | A map of default tags to apply to all taggable resources within the component | `map(string)` | `{}` | no |
1515
| <a name="input_environment"></a> [environment](#input\_environment) | The name of the tfscaffold environment | `string` | n/a | yes |
1616
| <a name="input_group"></a> [group](#input\_group) | The group variables are being inherited from (often synonymous with account short-name) | `string` | n/a | yes |
17-
| <a name="input_kms_deletion_window"></a> [kms\_deletion\_window](#input\_kms\_deletion\_window) | When a kms key is deleted, how long should it wait in the pending deletion state? | `string` | `"30"` | no |
1817
| <a name="input_letter_suppliers"></a> [letter\_suppliers](#input\_letter\_suppliers) | Letter suppliers enabled in the environment | <pre>map(object({<br/> enable_polling = bool<br/> default_supplier = optional(bool)<br/> }))</pre> | <pre>{<br/> "WTMMOCK": {<br/> "default_supplier": true,<br/> "enable_polling": true<br/> }<br/>}</pre> | no |
1918
| <a name="input_log_retention_in_days"></a> [log\_retention\_in\_days](#input\_log\_retention\_in\_days) | The retention period in days for the Cloudwatch Logs events to be retained, default of 0 is indefinite | `number` | `0` | no |
2019
| <a name="input_parent_acct_environment"></a> [parent\_acct\_environment](#input\_parent\_acct\_environment) | Name of the environment responsible for the acct resources used, affects things like DNS zone. Useful for named dev environments | `string` | `"main"` | no |

infrastructure/terraform/components/sandbox/variables.tf

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,6 @@ variable "log_retention_in_days" {
5757
default = 0
5858
}
5959

60-
variable "kms_deletion_window" {
61-
type = string
62-
description = "When a kms key is deleted, how long should it wait in the pending deletion state?"
63-
default = "30"
64-
}
6560

6661
variable "letter_suppliers" {
6762
type = map(object({

0 commit comments

Comments
 (0)