Terraform Helm Provider: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 3: Line 3:
=Internal=
=Internal=
* [[Terraform Concepts#Helm|Terraform Concepts]]
* [[Terraform Concepts#Helm|Terraform Concepts]]
=Example=
<syntaxhighlight lang='json'>
provider "helm" {
  kubernetes {
    host = data.aws_eks_cluster.cluster.endpoint
    cluster_ca_certificate = base64decode(data.aws_eks_cluster.cluster.certificate_authority.0.data)
    token = data.aws_eks_cluster_auth.cluster.token
    load_config_file = false
  }
}
</syntaxhighlight>

Revision as of 01:04, 3 March 2020

External

Internal

Example

provider "helm" {

  kubernetes {

    host = data.aws_eks_cluster.cluster.endpoint
    cluster_ca_certificate = base64decode(data.aws_eks_cluster.cluster.certificate_authority.0.data)
    token = data.aws_eks_cluster_auth.cluster.token
    load_config_file = false
  }
}