diff --git a/README.md b/README.md index 008fe78..7c6c65a 100644 --- a/README.md +++ b/README.md @@ -285,6 +285,7 @@ We are grateful to the community for contributing bugfixes and improvements! Ple | Name | Description | |------|-------------| | [access\_entries](#output\_access\_entries) | Map of access entries created and their attributes | +| [access\_policy\_associations](#output\_access\_policy\_associations) | Map of eks cluster access policy associations created and their attributes | | [cloudwatch\_log\_group\_arn](#output\_cloudwatch\_log\_group\_arn) | Arn of cloudwatch log group created | | [cloudwatch\_log\_group\_name](#output\_cloudwatch\_log\_group\_name) | Name of cloudwatch log group created | | [cluster\_addons](#output\_cluster\_addons) | Map of attribute maps for all EKS cluster addons enabled | diff --git a/outputs.tf b/outputs.tf index adba15c..7621ae8 100644 --- a/outputs.tf +++ b/outputs.tf @@ -61,6 +61,11 @@ output "access_entries" { value = aws_eks_access_entry.this } +output "access_policy_associations" { + description = "Map of eks cluster access policy associations created and their attributes" + value = aws_eks_access_policy_association.this +} + ################################################################################ # KMS Key ################################################################################