Skip to content

Commit 8d94501

Browse files
committed
Add comet_eks output descriptions and update readme
1 parent ddfb831 commit 8d94501

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

comet-infrastructure/modules/comet_eks/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050

5151
| Name | Description |
5252
|------|-------------|
53-
| <a name="output_cluster_certificate_authority_data"></a> [cluster\_certificate\_authority\_data](#output\_cluster\_certificate\_authority\_data) | n/a |
54-
| <a name="output_cluster_endpoint"></a> [cluster\_endpoint](#output\_cluster\_endpoint) | n/a |
55-
| <a name="output_cluster_name"></a> [cluster\_name](#output\_cluster\_name) | n/a |
56-
| <a name="output_nodegroup_sg_id"></a> [nodegroup\_sg\_id](#output\_nodegroup\_sg\_id) | n/a |
53+
| <a name="output_cluster_certificate_authority_data"></a> [cluster\_certificate\_authority\_data](#output\_cluster\_certificate\_authority\_data) | Base64 encoded certificate data required to communicate with the cluster |
54+
| <a name="output_cluster_endpoint"></a> [cluster\_endpoint](#output\_cluster\_endpoint) | Endpoint for the EKS cluster API server |
55+
| <a name="output_cluster_name"></a> [cluster\_name](#output\_cluster\_name) | Name of the EKS cluster |
56+
| <a name="output_nodegroup_sg_id"></a> [nodegroup\_sg\_id](#output\_nodegroup\_sg\_id) | ID of the node shared security group |
Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
output "cluster_name" {
2-
value = module.eks.cluster_name
2+
description = "Name of the EKS cluster"
3+
value = module.eks.cluster_name
34
}
45

56
output "cluster_endpoint" {
6-
value = module.eks.cluster_endpoint
7+
description = "Endpoint for the EKS cluster API server"
8+
value = module.eks.cluster_endpoint
79
}
810

911
output "cluster_certificate_authority_data" {
10-
value = module.eks.cluster_certificate_authority_data
12+
description = "Base64 encoded certificate data required to communicate with the cluster"
13+
value = module.eks.cluster_certificate_authority_data
1114
}
1215

1316
output "nodegroup_sg_id" {
14-
value = module.eks.node_security_group_id
17+
description = "ID of the node shared security group"
18+
value = module.eks.node_security_group_id
1519
}

0 commit comments

Comments
 (0)