Sign in
agent:

Edit eks/provider.tf to replace a deprecated api

There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.

Change from v1beta1 to v1 for the api_version

provider "kubernetes" { host = module.eks.cluster_endpoint cluster_ca_certificate = base64decode(module.eks.cluster_certificate_authority_data) exec { api_version = "client.authentication.k8s.io/v1" command = "aws" args = ["eks", "get-token", "--cluster-name", module.eks.cluster_name] } }
copied