Skip to content

Commit

Permalink
feat: output cloudwatch_log_group_arn
Browse files Browse the repository at this point in the history
  • Loading branch information
krrrr38 committed Oct 28, 2020
1 parent 751c422 commit 02bfa22
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a

| Name | Description |
|------|-------------|
| cloudwatch\_log\_group\_arn | Arn of cloudwatch log group created |
| cloudwatch\_log\_group\_name | Name of cloudwatch log group created |
| cluster\_arn | The Amazon Resource Name (ARN) of the cluster. |
| 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. |
Expand Down
5 changes: 5 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@ output "cloudwatch_log_group_name" {
value = aws_cloudwatch_log_group.this[*].name
}

output "cloudwatch_log_group_arn" {
description = "Arn of cloudwatch log group created"
value = aws_cloudwatch_log_group.this[*].arn
}

output "kubeconfig" {
description = "kubectl config file contents for this EKS cluster."
value = local.kubeconfig
Expand Down

0 comments on commit 02bfa22

Please sign in to comment.