Skip to content

Commit

Permalink
[eks] Add cluster_oidc_issuer_url output (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
hardillb authored Jun 11, 2024
2 parents e392bd1 + 7988f95 commit 199e05d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion eks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ The module supports the following:

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.43.0 |
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.49.0 |

## Modules

Expand Down Expand Up @@ -93,6 +93,7 @@ The module supports the following:
| Name | Description |
|------|-------------|
| <a name="output_cluster_name"></a> [cluster\_name](#output\_cluster\_name) | n/a |
| <a name="output_cluster_oidc_issuer_url"></a> [cluster\_oidc\_issuer\_url](#output\_cluster\_oidc\_issuer\_url) | n/a |
| <a name="output_private_subnet_ids"></a> [private\_subnet\_ids](#output\_private\_subnet\_ids) | n/a |
| <a name="output_public_subnet_ids"></a> [public\_subnet\_ids](#output\_public\_subnet\_ids) | n/a |
<!-- END_TF_DOCS -->
4 changes: 4 additions & 0 deletions eks/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
output "cluster_name" {
value = module.eks_cluster.eks_cluster_id
}

output "cluster_oidc_issuer_url" {
value = module.eks_cluster.eks_cluster_identity_oidc_issuer
}

0 comments on commit 199e05d

Please sign in to comment.