[go: up one dir, main page]

Skip to content
This repository has been 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

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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