Skip to content

Commit 09b31f8

Browse files
Merge branch 'main' into dependabot/github_actions/launchbynttdata/launch-workflows/dot-github/workflows/reusable-release-on-merge.yml-0.11.0
2 parents a9c4091 + 95e286c commit 09b31f8

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
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" {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require (
77
github.com/aws/aws-sdk-go-v2/service/eks v1.49.3
88
github.com/gruntwork-io/terratest v0.46.8
99
github.com/launchbynttdata/lcaf-component-terratest v1.0.4
10-
github.com/stretchr/testify v1.8.4
10+
github.com/stretchr/testify v1.11.1
1111
)
1212

1313
require (

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -526,8 +526,8 @@ github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/
526526
github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
527527
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
528528
github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
529-
github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk=
530-
github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
529+
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
530+
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
531531
github.com/tmccombs/hcl2json v0.3.3 h1:+DLNYqpWE0CsOQiEZu+OZm5ZBImake3wtITYxQ8uLFQ=
532532
github.com/tmccombs/hcl2json v0.3.3/go.mod h1:Y2chtz2x9bAeRTvSibVRVgbLJhLJXKlUeIvjeVdnm4w=
533533
github.com/ulikunitz/xz v0.5.10 h1:t92gobL9l3HE202wg3rlk19F6X+JOxl9BBrCCMYEYd8=

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)