Skip to content
This repository was archived by the owner on Aug 5, 2024. It is now read-only.

Terraform module for deploying Kubernetes Dashboard to k8s cluster

License

Notifications You must be signed in to change notification settings

cookielab/terraform-kubernetes-dashboard

Repository files navigation

Terraform module for Kubernetes Dashboard

Warning

This module is no longer maintained.

This module deploys Kubernetes Dashboard to your Kubernetes cluster.

Usage

provider "kubernetes" {
  # your kubernetes provider config
}

module "kubernetes_dashboard" {
  source = "cookielab/dashboard/kubernetes"
  version = "0.9.0"

  kubernetes_namespace_create = true
  kubernetes_dashboard_csrf = "<your-csrf-random-string>"
}