Skip to content

Commit

Permalink
* 2.5.7 -- 2024-04-22
Browse files Browse the repository at this point in the history
  - s3-config-org
    - add output s3_sqs_id
  • Loading branch information
badra001 committed Apr 22, 2024
1 parent cb72959 commit 7d7b7ee
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion common/version.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
locals {
_module_version = "2.5.6"
_module_version = "2.5.7"
}
1 change: 1 addition & 0 deletions s3-config-org/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,5 @@ No modules.
| <a name="output_kms_key_id"></a> [kms\_key\_id](#output\_kms\_key\_id) | Organization Config S3 Key ID |
| <a name="output_s3_sns_arn"></a> [s3\_sns\_arn](#output\_s3\_sns\_arn) | SNS ARN for S3 Notification, if enabled |
| <a name="output_s3_sqs_arn"></a> [s3\_sqs\_arn](#output\_s3\_sqs\_arn) | SQS ARN for S3 Notification, if enabled |
| <a name="output_s3_sqs_id"></a> [s3\_sqs\_id](#output\_s3\_sqs\_id) | SQS ID for S3 Notification, if enabled |
<!-- END_TF_DOCS -->
5 changes: 5 additions & 0 deletions s3-config-org/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit 7d7b7ee

Please sign in to comment.