Skip to content

Commit 02bfa22

Browse files
committed
feat: output cloudwatch_log_group_arn
1 parent 751c422 commit 02bfa22

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,7 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a
230230

231231
| Name | Description |
232232
|------|-------------|
233+
| cloudwatch\_log\_group\_arn | Arn of cloudwatch log group created |
233234
| cloudwatch\_log\_group\_name | Name of cloudwatch log group created |
234235
| cluster\_arn | The Amazon Resource Name (ARN) of the cluster. |
235236
| cluster\_certificate\_authority\_data | Nested attribute containing certificate-authority-data for your cluster. This is the base64 encoded certificate data required to communicate with your cluster. |

outputs.tf

+5
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,11 @@ output "cloudwatch_log_group_name" {
6161
value = aws_cloudwatch_log_group.this[*].name
6262
}
6363

64+
output "cloudwatch_log_group_arn" {
65+
description = "Arn of cloudwatch log group created"
66+
value = aws_cloudwatch_log_group.this[*].arn
67+
}
68+
6469
output "kubeconfig" {
6570
description = "kubectl config file contents for this EKS cluster."
6671
value = local.kubeconfig

0 commit comments

Comments
 (0)