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

Latest commit

 

History

History
22 lines (16 loc) · 661 Bytes

README.md

File metadata and controls

22 lines (16 loc) · 661 Bytes

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