Closed todd-dsm closed 11 months ago
Fixed references to the above resources
provider "helm" {
kubernetes {
host = aws_eks_cluster.apps.endpoint
cluster_ca_certificate = base64decode(aws_eks_cluster.apps.certificate_authority[0].data)
exec {
api_version = "client.authentication.k8s.io/v1beta1"
command = "aws"
args = ["eks", "get-token", "--cluster-name", aws_eks_cluster.apps.id]
}
}
}
Attempting to enable addons, oidc auth, et al with this module.
The Kubernetes/Helm providers in the new
eks_blueprints_addons
module (irsa branch) requires Kubernetes credentials (KUBECONFIG/active context) to finish their work. If not, things fail:Check these issues