10000 terraform-kubernetes-dashboard/README.md at master · cookielab/terraform-kubernetes-dashboard · GitHub
[go: up one dir, main page]

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

Latest commit

 

History

History
22 lines (16 loc) · 497 Bytes

README.md

File metadata and controls

22 lines (16 loc) · 497 Bytes

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