diff --git a/go.mod b/go.mod index e98f83870..b4bd4c794 100644 --- a/go.mod +++ b/go.mod @@ -5,7 +5,7 @@ go 1.25.0 require ( github.com/aws/aws-sdk-go-v2 v1.41.1 github.com/aws/aws-sdk-go-v2/config v1.32.7 - github.com/aws/aws-sdk-go-v2/service/eks v1.77.0 + github.com/aws/aws-sdk-go-v2/service/eks v1.77.1 github.com/aws/aws-sdk-go-v2/service/iam v1.53.2 github.com/aws/smithy-go v1.24.0 github.com/cloudevents/sdk-go/v2 v2.16.2 diff --git a/go.sum b/go.sum index 9abde8eef..1790ce39d 100644 --- a/go.sum +++ b/go.sum @@ -44,8 +44,8 @@ github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.17 h1:WWLqlh79iO48yLkj1v github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.17/go.mod h1:EhG22vHRrvF8oXSTYStZhJc1aUgKtnJe+aOiFEV90cM= github.com/aws/aws-sdk-go-v2/internal/ini v1.8.4 h1:WKuaxf++XKWlHWu9ECbMlha8WOEGm0OUEZqm4K/Gcfk= github.com/aws/aws-sdk-go-v2/internal/ini v1.8.4/go.mod h1:ZWy7j6v1vWGmPReu0iSGvRiise4YI5SkR3OHKTZ6Wuc= -github.com/aws/aws-sdk-go-v2/service/eks v1.77.0 h1:Z5mTpmbJKU7jEM7xoXI5tO4Nm0JUZSgVSFkpYuu6Ic0= -github.com/aws/aws-sdk-go-v2/service/eks v1.77.0/go.mod h1:Qg678m+87sCuJhcsZojenz8mblYG+Tq86V4m3hjVz0s= +github.com/aws/aws-sdk-go-v2/service/eks v1.77.1 h1:pMXNbXUX4Xd9fRmRdEe/vQ/5EFRy2M4jvW6geO5lhd8= +github.com/aws/aws-sdk-go-v2/service/eks v1.77.1/go.mod h1:Qg678m+87sCuJhcsZojenz8mblYG+Tq86V4m3hjVz0s= github.com/aws/aws-sdk-go-v2/service/iam v1.53.2 h1:62G6btFUwAa5uR5iPlnlNVAM0zJSLbWgDfKOfUC7oW4= github.com/aws/aws-sdk-go-v2/service/iam v1.53.2/go.mod h1:av9clChrbZbJ5E21msSsiT2oghl2BJHfQGhCkXmhyu8= github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.4 h1:0ryTNEdJbzUCEWkVXEXoqlXV72J5keC1GvILMOuD00E= diff --git a/vendor/github.com/aws/aws-sdk-go-v2/service/eks/CHANGELOG.md b/vendor/github.com/aws/aws-sdk-go-v2/service/eks/CHANGELOG.md index 000b601f0..806747ffa 100644 --- a/vendor/github.com/aws/aws-sdk-go-v2/service/eks/CHANGELOG.md +++ b/vendor/github.com/aws/aws-sdk-go-v2/service/eks/CHANGELOG.md @@ -1,3 +1,7 @@ +# v1.77.1 (2026-02-04) + +* **Documentation**: Update delete cluster description + # v1.77.0 (2026-01-14) * **Feature**: Added support for BOTTLEROCKET NVIDIA FIPS AMIs to AMI types in US regions. diff --git a/vendor/github.com/aws/aws-sdk-go-v2/service/eks/api_op_CreateCluster.go b/vendor/github.com/aws/aws-sdk-go-v2/service/eks/api_op_CreateCluster.go index fb5774dbb..04b5736e1 100644 --- a/vendor/github.com/aws/aws-sdk-go-v2/service/eks/api_op_CreateCluster.go +++ b/vendor/github.com/aws/aws-sdk-go-v2/service/eks/api_op_CreateCluster.go @@ -20,10 +20,10 @@ import ( // single tenant and unique. It runs on its own set of Amazon EC2 instances. // // The cluster control plane is provisioned across multiple Availability Zones and -// fronted by an ELB Network Load Balancer. Amazon EKS also provisions elastic -// network interfaces in your VPC subnets to provide connectivity from the control -// plane instances to the nodes (for example, to support kubectl exec , logs , and -// proxy data flows). +// fronted by an Elastic Load Balancing Network Load Balancer. Amazon EKS also +// provisions elastic network interfaces in your VPC subnets to provide +// connectivity from the control plane instances to the nodes (for example, to +// support kubectl exec , logs , and proxy data flows). // // Amazon EKS nodes run in your Amazon Web Services account and connect to your // cluster's control plane over the Kubernetes API server endpoint and a diff --git a/vendor/github.com/aws/aws-sdk-go-v2/service/eks/api_op_DeleteCluster.go b/vendor/github.com/aws/aws-sdk-go-v2/service/eks/api_op_DeleteCluster.go index 65e25ef19..f309cfaa9 100644 --- a/vendor/github.com/aws/aws-sdk-go-v2/service/eks/api_op_DeleteCluster.go +++ b/vendor/github.com/aws/aws-sdk-go-v2/service/eks/api_op_DeleteCluster.go @@ -13,11 +13,11 @@ import ( // Deletes an Amazon EKS cluster control plane. // -// If you have active services in your cluster that are associated with a load -// balancer, you must delete those services before deleting the cluster so that the -// load balancers are deleted properly. Otherwise, you can have orphaned resources -// in your VPC that prevent you from being able to delete the VPC. For more -// information, see [Deleting a cluster]in the Amazon EKS User Guide. +// If you have active services and ingress resources in your cluster that are +// associated with a load balancer, you must delete those services before deleting +// the cluster so that the load balancers are deleted properly. Otherwise, you can +// have orphaned resources in your VPC that prevent you from being able to delete +// the VPC. For more information, see [Deleting a cluster]in the Amazon EKS User Guide. // // If you have managed node groups or Fargate profiles attached to the cluster, // you must delete them first. For more information, see DeleteNodgroup and diff --git a/vendor/github.com/aws/aws-sdk-go-v2/service/eks/go_module_metadata.go b/vendor/github.com/aws/aws-sdk-go-v2/service/eks/go_module_metadata.go index a7926342b..36408315a 100644 --- a/vendor/github.com/aws/aws-sdk-go-v2/service/eks/go_module_metadata.go +++ b/vendor/github.com/aws/aws-sdk-go-v2/service/eks/go_module_metadata.go @@ -3,4 +3,4 @@ package eks // goModuleVersion is the tagged release for this module -const goModuleVersion = "1.77.0" +const goModuleVersion = "1.77.1" diff --git a/vendor/modules.txt b/vendor/modules.txt index 963c2167c..8aaeae4b1 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -119,7 +119,7 @@ github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 # github.com/aws/aws-sdk-go-v2/internal/ini v1.8.4 ## explicit; go 1.23 github.com/aws/aws-sdk-go-v2/internal/ini -# github.com/aws/aws-sdk-go-v2/service/eks v1.77.0 +# github.com/aws/aws-sdk-go-v2/service/eks v1.77.1 ## explicit; go 1.23 github.com/aws/aws-sdk-go-v2/service/eks github.com/aws/aws-sdk-go-v2/service/eks/internal/endpoints