Difference between revisions of "Terraform provider: Kubernetes"

From wikieduonline
Jump to navigation Jump to search
Line 22: Line 22:
  
 
[[Terraform EKS]] examples:
 
[[Terraform EKS]] examples:
:provider "kubernetes" {
+
provider "kubernetes" {
load_config_file = false
+
    load_config_file = false
:
+
host                  = [[data.]][[aws_eks_cluster]].cluster.endpoint
+
    host                  = [[data.]][[aws_eks_cluster]].cluster.endpoint
[[token]]                  = data.[[aws_eks_cluster_auth]].cluster.token
+
    [[token]]                  = data.[[aws_eks_cluster_auth]].cluster.token
cluster_ca_certificate = [[base64decode]](data.aws_eks_cluster.cluster.certificate_authority.0.data)
+
  cluster_ca_certificate = [[base64decode]](data.aws_eks_cluster.cluster.certificate_authority.0.data)
: }
+
}
  
 
https://registry.terraform.io/providers/hashicorp/kubernetes/latest/docs#exec-plugins
 
https://registry.terraform.io/providers/hashicorp/kubernetes/latest/docs#exec-plugins

Revision as of 06:39, 30 August 2022



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

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


Terraform EKS examples:

provider "kubernetes" {
   load_config_file = false

   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)
}

https://registry.terraform.io/providers/hashicorp/kubernetes/latest/docs#exec-plugins

provider "kubernetes" {
  host                   = var.cluster_endpoint
  cluster_ca_certificate = base64decode(var.cluster_ca_cert)
  exec {
    api_version = "client.authentication.k8s.io/v1alpha1"
    args        = ["eks", "get-token", "--cluster-name", var.cluster_name]
    command     = "aws"
  }
}


Related

See also

Advertising: