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

cookielab/terraform-kubernetes-datadog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Terraform module for Kubernetes Datadog

Warning

This module is no longer maintained. We recommend switching to Helm.

This module deploys Datadog to your Kubernetes cluster.

Usage

provider "kubernetes" {
  # your kubernetes provider config
}

module "datadog" {
  source = "cookielab/datadog/kubernetes"
  version = "0.9.0"

  datadog_agent_api_key = "<YOUR_API_KEY>"
  datadog_agent_site = "datadoghq.com" # Set to "datadoghq.eu" to send your Agent data to the Datadog EU site (default: "datadoghq.com")
}