Skip to content

Commit 0d2a4c2

Browse files
authored
feat: Add output for access_policy_associations (#2904)
* add output for access_policy_associations * wording
1 parent 0381503 commit 0d2a4c2

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,7 @@ We are grateful to the community for contributing bugfixes and improvements! Ple
285285
| Name | Description |
286286
|------|-------------|
287287
| <a name="output_access_entries"></a> [access\_entries](#output\_access\_entries) | Map of access entries created and their attributes |
288+
| <a name="output_access_policy_associations"></a> [access\_policy\_associations](#output\_access\_policy\_associations) | Map of eks cluster access policy associations created and their attributes |
288289
| <a name="output_cloudwatch_log_group_arn"></a> [cloudwatch\_log\_group\_arn](#output\_cloudwatch\_log\_group\_arn) | Arn of cloudwatch log group created |
289290
| <a name="output_cloudwatch_log_group_name"></a> [cloudwatch\_log\_group\_name](#output\_cloudwatch\_log\_group\_name) | Name of cloudwatch log group created |
290291
| <a name="output_cluster_addons"></a> [cluster\_addons](#output\_cluster\_addons) | Map of attribute maps for all EKS cluster addons enabled |

outputs.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,11 @@ output "access_entries" {
6161
value = aws_eks_access_entry.this
6262
}
6363

64+
output "access_policy_associations" {
65+
description = "Map of eks cluster access policy associations created and their attributes"
66+
value = aws_eks_access_policy_association.this
67+
}
68+
6469
################################################################################
6570
# KMS Key
6671
################################################################################

0 commit comments

Comments
 (0)