Skip to content

Commit 9f51ff8

Browse files
Merge branch 'main' into dependabot/go_modules/github.com/stretchr/testify-1.11.1
2 parents 4c48da7 + 34458be commit 9f51ff8

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,7 @@ No modules.
244244

245245
| Name | Description |
246246
|------|-------------|
247+
| <a name="output_name"></a> [name](#output\_name) | Cluster name. |
247248
| <a name="output_id"></a> [id](#output\_id) | Cluster name (resource ID). |
248249
| <a name="output_arn"></a> [arn](#output\_arn) | Cluster ARN. |
249250
| <a name="output_endpoint"></a> [endpoint](#output\_endpoint) | Cluster API server endpoint. |

examples/simple/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ output "resource_name" {
1414

1515
output "cluster_name" {
1616
description = "EKS cluster name (for test validation)"
17-
value = module.eks_cluster.id
17+
value = module.eks_cluster.name
1818
}
1919

2020
output "cluster_arn" {

outputs.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
# Outputs
44
############################
55

6+
output "name" {
7+
description = "Cluster name."
8+
value = aws_eks_cluster.this.name
9+
}
10+
611
output "id" {
712
description = "Cluster name (resource ID)."
813
value = aws_eks_cluster.this.id

0 commit comments

Comments
 (0)