diff --git a/eks/README.md b/eks/README.md index a9bfe85..84d533f 100644 --- a/eks/README.md +++ b/eks/README.md @@ -49,7 +49,7 @@ The module supports the following: | Name | Version | |------|---------| -| [aws](#provider\_aws) | 5.43.0 | +| [aws](#provider\_aws) | 5.49.0 | ## Modules @@ -93,6 +93,7 @@ The module supports the following: | Name | Description | |------|-------------| | [cluster\_name](#output\_cluster\_name) | n/a | +| [cluster\_oidc\_issuer\_url](#output\_cluster\_oidc\_issuer\_url) | n/a | | [private\_subnet\_ids](#output\_private\_subnet\_ids) | n/a | | [public\_subnet\_ids](#output\_public\_subnet\_ids) | n/a | \ No newline at end of file diff --git a/eks/outputs.tf b/eks/outputs.tf index 74879da..565379e 100644 --- a/eks/outputs.tf +++ b/eks/outputs.tf @@ -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 +}