Skip to content

Commit

Permalink
Add a new output: cluster_oidc_issuer_url
Browse files Browse the repository at this point in the history
  • Loading branch information
angelbarrera92 committed Feb 11, 2021
1 parent 37d896a commit 07e8420
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/eks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,5 @@
| ----------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| cluster_certificate_authority | The base64 encoded certificate data required to communicate with your cluster. Add this to the certificate-authority-data section of the kubeconfig file for your cluster |
| cluster_endpoint | The endpoint for your Kubernetes API server |
| operator_ssh_user | SSH user to access cluster nodes with ssh_public_key |
| operator_ssh_user | SSH user to access cluster nodes with ssh_public_key |
| eks_cluster_oidc_issuer_url | The URL on the EKS cluster OIDC Issuer |
5 changes: 5 additions & 0 deletions modules/eks/output.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,8 @@ output "operator_ssh_user" {
description = "SSH user to access cluster nodes with ssh_public_key"
value = "ec2-user" # Default
}

output "eks_cluster_oidc_issuer_url" {
description = "The URL on the EKS cluster OIDC Issuer"
value = module.cluster.cluster_oidc_issuer_url
}

0 comments on commit 07e8420

Please sign in to comment.