Skip to content

Commit

Permalink
Merge pull request #66 from isovalent/add-cert-authority-output
Browse files Browse the repository at this point in the history
add cluster_certificate_authority_data output
  • Loading branch information
darox authored Jan 22, 2025
2 parents 71916d4 + 2727974 commit 80f8512
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ An opinionated Terraform module that can be used to create and manage an EKS clu
| <a name="output_cert_manager_role_arn"></a> [cert\_manager\_role\_arn](#output\_cert\_manager\_role\_arn) | n/a |
| <a name="output_cluster_arn"></a> [cluster\_arn](#output\_cluster\_arn) | n/a |
| <a name="output_cluster_autoscaler_role_arn"></a> [cluster\_autoscaler\_role\_arn](#output\_cluster\_autoscaler\_role\_arn) | n/a |
| <a name="output_cluster_certificate_authority_data"></a> [cluster\_certificate\_authority\_data](#output\_cluster\_certificate\_authority\_data) | n/a |
| <a name="output_cluster_endpoint"></a> [cluster\_endpoint](#output\_cluster\_endpoint) | n/a |
| <a name="output_cluster_version"></a> [cluster\_version](#output\_cluster\_version) | n/a |
| <a name="output_external_dns_role_arn"></a> [external\_dns\_role\_arn](#output\_external\_dns\_role\_arn) | n/a |
Expand Down
5 changes: 5 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -91,3 +91,8 @@ output "cluster_endpoint" {
output "oidc_provider_url" {
value = module.main.oidc_provider
}


output "cluster_certificate_authority_data" {
value = module.main.cluster_certificate_authority_data
}

0 comments on commit 80f8512

Please sign in to comment.