Last active
November 1, 2018 16:36
-
-
Save jmervine/2ca9fd7bfd599d0fd1ad37a612d5debf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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