Skip to content

Instantly share code, notes, and snippets.

@jmervine
Last active November 1, 2018 16:36
Show Gist options
  • Save jmervine/2ca9fd7bfd599d0fd1ad37a612d5debf to your computer and use it in GitHub Desktop.
Save jmervine/2ca9fd7bfd599d0fd1ad37a612d5debf to your computer and use it in GitHub Desktop.
provider "helm" {
kubernetes {
config_path = "${local_file.kubeconfig.filename}"
}
}
provider "helm" {
kubernetes {
host = "${aws_eks_cluster.eks_master.endpoint}"
cluster_ca_certificate = "${base64decode(aws_eks_cluster.eks_master.certificate_authority.0.data)}"
token = "${module.auth.token}"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment