Terraform provider: Kubernetes

From wikieduonline
Revision as of 12:48, 17 February 2022 by Welcome (talk | contribs)
Jump to navigation Jump to search


provider "kubernetes" {
  config_path    = "~/.kube/config"
  config_context = "my-context"
}

resource "kubernetes_namespace" "example" {
  metadata {
    name = "my-first-namespace"
  }
}


Terraform EKS example:

provider "kubernetes" {
  host                   = data.aws_eks_cluster.cluster.endpoint
  token                  = data.aws_eks_cluster_auth.cluster.token
  cluster_ca_certificate = base64decode(data.aws_eks_cluster.cluster.certificate_authority.0.data)
}

Related

See also

Advertising: