diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index fd04d90..9af94cf 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -18,7 +18,7 @@ repos:
args: ['--allow-missing-credentials']
- id: trailing-whitespace
- repo: https://github.com/antonbabenko/pre-commit-terraform
- rev: v1.77.0
+ rev: v1.77.1
hooks:
- id: terraform_fmt
- id: terraform_docs
diff --git a/README.md b/README.md
index 7e61b4e..3c4ae10 100644
--- a/README.md
+++ b/README.md
@@ -30,7 +30,7 @@ module "mq" {
| Name | Version |
|------|---------|
-| [aws](#provider\_aws) | >= 4.0 |
+| [aws](#provider\_aws) | 4.60.0 |
## Modules
@@ -80,6 +80,7 @@ No modules.
|------|-------------|
| [broker\_arn](#output\_broker\_arn) | AmazonMQ broker ARN. |
| [broker\_id](#output\_broker\_id) | AmazonMQ broker ID. |
+| [broker\_instances](#output\_broker\_instances) | AmazonMQ broker instances details. |
## License
diff --git a/outputs.tf b/outputs.tf
index 118d2d0..9dd1a18 100644
--- a/outputs.tf
+++ b/outputs.tf
@@ -7,3 +7,8 @@ output "broker_arn" {
value = aws_mq_broker.main.arn
description = "AmazonMQ broker ARN."
}
+
+output "broker_instances" {
+ value = aws_mq_broker.main.instances
+ description = "AmazonMQ broker instances details."
+}