Skip to content

Commit 90b2ace

Browse files
committedJan 4, 2024
update sending_pool_name var description
1 parent cef5602 commit 90b2ace

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed
 

‎README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Terraform module to set up an [AWS SES sending domain](https://docs.aws.amazon.c
1414

1515
| Name | Version |
1616
|------|---------|
17-
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.31.0 |
17+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.44.0 |
1818

1919
## Resources
2020

@@ -41,15 +41,15 @@ Terraform module to set up an [AWS SES sending domain](https://docs.aws.amazon.c
4141
| <a name="input_descriptor_formats"></a> [descriptor\_formats](#input\_descriptor\_formats) | Describe additional descriptors to be output in the `descriptors` output map.<br>Map of maps. Keys are names of descriptors. Values are maps of the form<br>`{<br> format = string<br> labels = list(string)<br>}`<br>(Type is `any` so the map values can later be enhanced to provide additional options.)<br>`format` is a Terraform format string to be passed to the `format()` function.<br>`labels` is a list of labels, in order, to pass to `format()` function.<br>Label values will be normalized before being passed to `format()` so they will be<br>identical to how they appear in `id`.<br>Default is `{}` (`descriptors` output will be empty). | `any` | `{}` | no |
4242
| <a name="input_domain"></a> [domain](#input\_domain) | The domain for the SES identity. | `string` | n/a | yes |
4343
| <a name="input_enabled"></a> [enabled](#input\_enabled) | Set to false to prevent the module from creating any resources | `bool` | `null` | no |
44+
| <a name="input_group_path"></a> [group\_path](#input\_group\_path) | The IAM Path of the group and policy to create | `string` | `"/"` | no |
4445
| <a name="input_id_length_limit"></a> [id\_length\_limit](#input\_id\_length\_limit) | Limit `id` to this many characters (minimum 6).<br>Set to `0` for unlimited length.<br>Set to `null` for keep the existing setting, which defaults to `0`.<br>Does not affect `id_full`. | `number` | `null` | no |
4546
| <a name="input_label_key_case"></a> [label\_key\_case](#input\_label\_key\_case) | Controls the letter case of the `tags` keys (label names) for tags generated by this module.<br>Does not affect keys of tags passed in via the `tags` input.<br>Possible values: `lower`, `title`, `upper`.<br>Default value: `title`. | `string` | `null` | no |
4647
| <a name="input_label_order"></a> [label\_order](#input\_label\_order) | The order in which the labels (ID elements) appear in the `id`.<br>Defaults to ["namespace", "stage", "component", "attributes"].<br>You can omit any of the 6 labels ("tenant" is the 6th), but at least one must be present. | `list(string)` | `null` | no |
4748
| <a name="input_label_value_case"></a> [label\_value\_case](#input\_label\_value\_case) | Controls the letter case of ID elements (labels) as included in `id`,<br>set as tag values, and output by this module individually.<br>Does not affect values of tags passed in via the `tags` input.<br>Possible values: `lower`, `title`, `upper` and `none` (no transformation).<br>Set this to `title` and set `delimiter` to `""` to yield Pascal Case IDs.<br>Default value: `lower`. | `string` | `null` | no |
4849
| <a name="input_labels_as_tags"></a> [labels\_as\_tags](#input\_labels\_as\_tags) | Set of labels (ID elements) to include as tags in the `tags` output.<br>Default is to include all labels.<br>Tags with empty values will not be included in the `tags` output.<br>Set to `[]` to suppress all generated tags.<br>**Notes:**<br> The value of the `name` tag, if included, will be the `id`.<br> Unlike other `context` inputs, the initial setting of `labels_as_tags` cannot be<br> changed in later chained modules. Attempts to change it will be silently ignored. | `set(string)` | <pre>[<br> "default"<br>]</pre> | no |
4950
| <a name="input_namespace"></a> [namespace](#input\_namespace) | ID element. Usually an abbreviation of the organization name, e.g. 'eg' or 'cp', to help ensure generated IDs are globally unique | `string` | `null` | no |
5051
| <a name="input_regex_replace_chars"></a> [regex\_replace\_chars](#input\_regex\_replace\_chars) | Terraform regular expression (regex) string.<br>Characters matching the regex will be removed from the ID elements.<br>If not set, `"/[^a-zA-Z0-9-]/"` is used to remove all characters other than hyphens, letters and digits. | `string` | `null` | no |
51-
| <a name="input_ses_group_path"></a> [ses\_group\_path](#input\_ses\_group\_path) | The IAM Path of the group and policy to create | `string` | `"/"` | no |
52-
| <a name="input_ses_sending_pool_name"></a> [ses\_sending\_pool\_name](#input\_ses\_sending\_pool\_name) | The name of the SES sending pool to associate the domain with. | `string` | `""` | no |
52+
| <a name="input_sending_pool_name"></a> [sending\_pool\_name](#input\_sending\_pool\_name) | Override the default sending pool name. If not provided, the sending pool name will use the context module id.<br> Note: If you are using an existing sending pool, create\_sending\_pool must be set to false. | `string` | `""` | no |
5353
| <a name="input_stage"></a> [stage](#input\_stage) | ID element. Used to indicate role, e.g. 'prod', 'staging', 'source', 'build', 'test', 'deploy', 'release' | `string` | `null` | no |
5454
| <a name="input_tags"></a> [tags](#input\_tags) | Additional tags (e.g. `{'BusinessUnit': 'XYZ'}`).<br>Neither the tag keys nor the tag values will be modified by this module. | `map(string)` | `{}` | no |
5555
| <a name="input_tenant"></a> [tenant](#input\_tenant) | ID element \_(Rarely used, not included by default)\_. A customer identifier, indicating who this instance of a resource is for | `string` | `null` | no |
@@ -58,8 +58,8 @@ Terraform module to set up an [AWS SES sending domain](https://docs.aws.amazon.c
5858

5959
| Name | Description |
6060
|------|-------------|
61+
| <a name="output_dkim_records"></a> [dkim\_records](#output\_dkim\_records) | The DNS records required for Amazon SES validation and DKIM setup. |
6162
| <a name="output_email_identity"></a> [email\_identity](#output\_email\_identity) | The email identity. |
6263
| <a name="output_iam_sending_group_name"></a> [iam\_sending\_group\_name](#output\_iam\_sending\_group\_name) | The IAM group name. |
63-
| <a name="output_ses_dkim_records"></a> [ses\_dkim\_records](#output\_ses\_dkim\_records) | The DNS records required for Amazon SES validation and DKIM setup. |
64-
| <a name="output_ses_sending_pool_name"></a> [ses\_sending\_pool\_name](#output\_ses\_sending\_pool\_name) | The name of the SES sending pool to associate the domain with. |
64+
| <a name="output_sending_pool_name"></a> [sending\_pool\_name](#output\_sending\_pool\_name) | The name of the SES sending pool to associate the domain with. |
6565
<!-- END_TF_DOCS -->

‎variables.tf

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@ variable "domain" {
55

66
variable "sending_pool_name" {
77
type = string
8-
description = "The name of the SES sending pool to associate the domain with."
8+
description = <<EOT
9+
Override the default sending pool name. If not provided, the sending pool name will use the context module id.
10+
Note: If you are using an existing sending pool, create_sending_pool must be set to false.
11+
EOT
912
default = ""
1013
}
1114

0 commit comments

Comments
 (0)