Skip to content

Commit

Permalink
- 1.0.4 -- 2025-08-19
Browse files Browse the repository at this point in the history
  - change dlq_event_age default from 3600 to 300
  • Loading branch information
badra001 committed Aug 19, 2025
1 parent 5153a67 commit 2c0e302
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,6 @@

- 1.0.3 -- 2025-08-18
- update required TF to 1.5.7 (from submodule requirements)

- 1.0.4 -- 2025-08-19
- change dlq_event_age default from 3600 to 300
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ This uses a number of internal and external modules. Here are references for th
| <a name="input_account_id"></a> [account\_id](#input\_account\_id) | AWS Account ID (default will pull from current user) | `string` | `""` | no |
| <a name="input_api_client_id"></a> [api\_client\_id](#input\_api\_client\_id) | Salesforce API Client Id | `string` | n/a | yes |
| <a name="input_api_client_secret"></a> [api\_client\_secret](#input\_api\_client\_secret) | Salesforce API Client Secreet | `string` | n/a | yes |
| <a name="input_dlq_event_age"></a> [dlq\_event\_age](#input\_dlq\_event\_age) | Dead Letter Queue maximum\_event\_age\_in\_seconds (default: 3600) | `number` | `3600` | no |
| <a name="input_dlq_event_age"></a> [dlq\_event\_age](#input\_dlq\_event\_age) | Dead Letter Queue maximum\_event\_age\_in\_seconds (default: 3600) | `number` | `300` | no |
| <a name="input_dlq_retry_attempts"></a> [dlq\_retry\_attempts](#input\_dlq\_retry\_attempts) | Dead Letter Queue maxium\_retry\_attempts (default: 3) | `number` | `3` | no |
| <a name="input_environment_label"></a> [environment\_label](#input\_environment\_label) | Label to be used as the environment | `string` | n/a | yes |
| <a name="input_input_resource_label"></a> [input\_resource\_label](#input\_input\_resource\_label) | Label to be used on input components (in, clean, quarantine and related resources) | `string` | n/a | yes |
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ variable "dlq_retry_attempts" {
variable "dlq_event_age" {
description = "Dead Letter Queue maximum_event_age_in_seconds (default: 3600)"
type = number
default = 3600
default = 300
}

variable "input_resource_tags" {
Expand Down
2 changes: 1 addition & 1 deletion version.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
locals {
_module_name = "aws-app-ditd-darhts-s3-transfer"
_module_version = "1.0.3"
_module_version = "1.0.4"
}

0 comments on commit 2c0e302

Please sign in to comment.