From c1fc2af1c37662a358e2bf4304d1495e002ddecd Mon Sep 17 00:00:00 2001 From: Ryan Delaney Date: Tue, 15 Nov 2022 17:37:37 -0500 Subject: [PATCH] Mark ses_rule_set as required --- README.md | 2 +- variables.tf | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 3e02b70..fbf6194 100644 --- a/README.md +++ b/README.md @@ -112,7 +112,7 @@ No modules. | receive\_s3\_kms\_key\_arn | The ARN of the KMS key for S3 objects of received emails (effective if enable\_incoming\_email is true). | `string` | `null` | no | | receive\_s3\_prefix | The key prefix of the S3 bucket to store received emails (required if enable\_incoming\_email is true). | `string` | `""` | no | | route53\_zone\_id | Route53 host zone ID to enable SES. | `string` | n/a | yes | -| ses\_rule\_set | Name of the SES rule set to associate rules with. | `string` | `null` | no | +| ses\_rule\_set | Name of the SES rule set to associate rules with. | `string` | n/a | yes | ## Outputs diff --git a/variables.tf b/variables.tf index 0a6a26c..1157995 100644 --- a/variables.tf +++ b/variables.tf @@ -57,7 +57,6 @@ variable "route53_zone_id" { variable "ses_rule_set" { description = "Name of the SES rule set to associate rules with." type = string - default = null } variable "enable_incoming_email" {