client.authentication.k8s.io/v1beta1

From wikieduonline
Revision as of 07:29, 7 February 2024 by Welcome (talk | contribs)
Jump to navigation Jump to search

provider "helm" {
 kubernetes {
   host                   = module.eks.cluster_endpoint
   cluster_ca_certificate = base64decode(module.eks.cluster_certificate_authority_data)

   exec {
     api_version = "client.authentication.k8s.io/v1beta1"
     command     = "aws"
     # This requires the awscli to be installed locally where Terraform is executed
     args = ["eks", "get-token", "--cluster-name", module.eks.cluster_name]
   }
 }
}

See also

Advertising: