diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8c817f9..14f1fbe 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -354,3 +354,7 @@
* 2.5.6 -- 2024-03-08
- cloudtrail
- add variable create_cloudtrail (default: true) to be used for the org cloudtrail old setup
+
+* 2.5.7 -- 2024-04-22
+ - s3-config-org
+ - add output s3_sqs_id
diff --git a/common/version.tf b/common/version.tf
index e28e2e8..2162ea4 100644
--- a/common/version.tf
+++ b/common/version.tf
@@ -1,3 +1,3 @@
locals {
- _module_version = "2.5.6"
+ _module_version = "2.5.7"
}
diff --git a/s3-config-org/README.md b/s3-config-org/README.md
index 14f26f5..aa2f4a9 100644
--- a/s3-config-org/README.md
+++ b/s3-config-org/README.md
@@ -103,4 +103,5 @@ No modules.
| [kms\_key\_id](#output\_kms\_key\_id) | Organization Config S3 Key ID |
| [s3\_sns\_arn](#output\_s3\_sns\_arn) | SNS ARN for S3 Notification, if enabled |
| [s3\_sqs\_arn](#output\_s3\_sqs\_arn) | SQS ARN for S3 Notification, if enabled |
+| [s3\_sqs\_id](#output\_s3\_sqs\_id) | SQS ID for S3 Notification, if enabled |
diff --git a/s3-config-org/outputs.tf b/s3-config-org/outputs.tf
index b623f51..4de2e6b 100644
--- a/s3-config-org/outputs.tf
+++ b/s3-config-org/outputs.tf
@@ -32,3 +32,8 @@ output "s3_sqs_arn" {
description = "SQS ARN for S3 Notification, if enabled"
value = var.enable_s3_sqs ? aws_sqs_queue.config_org_s3[0].arn : null
}
+
+output "s3_sqs_id" {
+ description = "SQS ID for S3 Notification, if enabled"
+ value = var.enable_s3_sqs ? aws_sqs_queue.config_org_s3[0].id : null
+}