Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nivleshc/4310657b931ac9f36cdcfc9865ac20b1 to your computer and use it in GitHub Desktop.
Save nivleshc/4310657b931ac9f36cdcfc9865ac20b1 to your computer and use it in GitHub Desktop.
This gist contains the first part of the file grafana.tf which is contained in the blog-tf-pipeline-eks-cluster repository.
resource "kubernetes_namespace" "grafana" {
metadata {
name = local.grafana.namespace
}
depends_on = [
aws_eks_cluster.eks_cluster
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment