SlideShare a Scribd company logo
Provisioning Datadog with Terraform
Matt Spurlin
Software Engineer @ Datadog
matt.spurlin@datadoghq.com
Datadog
Modern monitoring and analytics tool designed to give you a single pane of glass view
into your infrastructure and applications.
Terraform
“Use Infrastructure as Code to provision and manage any cloud, infrastructure, or
service”
Why Use Datadog and Terraform together?
● Maintaining a core set of dashboards
● Manage your alerts and your on call in one place
● Bootstrapping new services
Installing Terraform
1) Grab the binary (https://www.terraform.io/downloads.html)
2) Put it on your $PATH
3) That’s it.
Terraform Providers
provider "<provider name>" {
<configuration argument> = "<configuration value>"
}
Datadog Provider
provider "datadog" {
api_key = "${var.datadog_api_key}"
app_key = "${var.datadog_app_key}"
}
terraform init
Template Variables
variable "<variable name>" {
<argument name> = <argument value>
}
Template Variable Example
variable "datadog_api_key" {
type = string
default = "<YOUR_API_KEY>"
}
variable "datadog_app_key" {
type = string
default = "<YOUR_APP_KEY>"
}
Terraform Resources
resource "<provider>_<type>" "<name>" {
<configuration argument> = "<configuration value>"
}
Dashboards
Minimal Dashboard
resource "datadog_dashboard" "ordered_dashboard" {
title = "Ordered Layout Dashboard"
layout_type = "ordered"
widget {
timeseries_definition {
request {
q = "avg:system.load.1{*}"
}
}
}
}
How To Get Widget Values
JSON -> HCL
{
"viz": "timeseries",
"requests": [
{
"q": "avg:system.load.1{*}",
"type": "line",
"style": {
"palette": "dog_classic",
"type": "solid",
"width": "normal"
}
}
]
}
widget {
timeseries_definition {
request {
q = "avg:system.load.1{*}"
display_type = "line"
style {
palete = "dog_classic"
line_type = "solid"
line_width = "normal"
}
}
}
}
terraform plan
terraform apply
Monitors
Minimal Monitor
resource "datadog_monitor" "simple_monitor" {
name = "Simple monitor"
type = "metric alert"
message = "Monitor triggered."
query = "avg(last_1h):avg:system.load.1{*} > 1.5"
}
terraform plan
terraform apply
For more information:
https://dtdg.co/terraform
Find these slides at:
https://github.com/mattsp1290
Questions?

More Related Content

PPTX
Gatekeeper: API gateway
PDF
Microservices, Kubernetes and Istio - A Great Fit!
PPSX
Big Data Redis Mongodb Dynamodb Sharding
PDF
Tracing 2000+ polyglot microservices at Uber with Jaeger and OpenTracing
PPTX
Microservices Architecture & Testing Strategies
PPTX
What Is A Docker Container? | Docker Container Tutorial For Beginners| Docker...
PPTX
OpenTelemetry For Architects
PPTX
Introduction to Docker - 2017
Gatekeeper: API gateway
Microservices, Kubernetes and Istio - A Great Fit!
Big Data Redis Mongodb Dynamodb Sharding
Tracing 2000+ polyglot microservices at Uber with Jaeger and OpenTracing
Microservices Architecture & Testing Strategies
What Is A Docker Container? | Docker Container Tutorial For Beginners| Docker...
OpenTelemetry For Architects
Introduction to Docker - 2017

What's hot (20)

PDF
Kubernetes Basics
PPSX
Zero-Trust SASE DevSecOps
PDF
Kubernetes Architecture | Understanding Kubernetes Components | Kubernetes Tu...
PDF
Kubernetes Secrets Management on Production with Demo
PDF
Elastic Kubernetes Services (EKS)
PDF
Monitoring Kubernetes with Prometheus
PPTX
Partner Briefing_January 25 (FINAL).pptx
PPTX
Elastic Stack Introduction
PPTX
AWS vs. Azure
PDF
Container Security
PPTX
Docker 101 - High level introduction to docker
PPTX
Azure Fundamentals || AZ-900
PPTX
Adopting OpenTelemetry
PDF
Chaos Engineering for Docker
PDF
Architecting for the Cloud using NetflixOSS - Codemash Workshop
PPT
Docker introduction
PPTX
Sprinting with Anypoint Runtime Fabric
PDF
Container Security
PPTX
THE STATE OF OPENTELEMETRY, DOTAN HOROVITS, Logz.io
PPTX
Openstack zun,virtual kubelet
Kubernetes Basics
Zero-Trust SASE DevSecOps
Kubernetes Architecture | Understanding Kubernetes Components | Kubernetes Tu...
Kubernetes Secrets Management on Production with Demo
Elastic Kubernetes Services (EKS)
Monitoring Kubernetes with Prometheus
Partner Briefing_January 25 (FINAL).pptx
Elastic Stack Introduction
AWS vs. Azure
Container Security
Docker 101 - High level introduction to docker
Azure Fundamentals || AZ-900
Adopting OpenTelemetry
Chaos Engineering for Docker
Architecting for the Cloud using NetflixOSS - Codemash Workshop
Docker introduction
Sprinting with Anypoint Runtime Fabric
Container Security
THE STATE OF OPENTELEMETRY, DOTAN HOROVITS, Logz.io
Openstack zun,virtual kubelet
Ad

Similar to Provisioning Datadog with Terraform (20)

PDF
Deploy resources on Azure using IaC (Azure Terraform)
PPTX
"Continuously delivering infrastructure using Terraform and Packer" training ...
PDF
CDK Meetup: Rule the World through IaC
PPTX
How to Introduce Telemetry Streaming (gNMI) in Your Network with SNMP with Te...
PDF
Introduction to IAC and Terraform
PPTX
Comprehensive Terraform Training
PPTX
Terraform training 🎒 - Basic
PPTX
Debasihish da final.ppt
PPT
Monitoring using Prometheus and Grafana
PDF
Terraform: Cloud Configuration Management (WTC/IPC'16)
PDF
Dropwizard and Friends
PPTX
Terraform modules restructured
PPTX
Terraform Modules Restructured
PDF
My Hashitalk Indonesia April 2024 Presentation
ODP
code-camp-meteor
PPT
Android - Anatomy of android elements & layouts
PPTX
Infrastructure-as-Code (IaC) using Terraform
PPTX
terraform cours intéressant et super fort
PPTX
The Best Way to Become an Android Developer Expert with Android Jetpack
PPTX
Modern Scheduling for Modern Applications with Nomad
Deploy resources on Azure using IaC (Azure Terraform)
"Continuously delivering infrastructure using Terraform and Packer" training ...
CDK Meetup: Rule the World through IaC
How to Introduce Telemetry Streaming (gNMI) in Your Network with SNMP with Te...
Introduction to IAC and Terraform
Comprehensive Terraform Training
Terraform training 🎒 - Basic
Debasihish da final.ppt
Monitoring using Prometheus and Grafana
Terraform: Cloud Configuration Management (WTC/IPC'16)
Dropwizard and Friends
Terraform modules restructured
Terraform Modules Restructured
My Hashitalk Indonesia April 2024 Presentation
code-camp-meteor
Android - Anatomy of android elements & layouts
Infrastructure-as-Code (IaC) using Terraform
terraform cours intéressant et super fort
The Best Way to Become an Android Developer Expert with Android Jetpack
Modern Scheduling for Modern Applications with Nomad
Ad

Recently uploaded (20)

PDF
Design an Analysis of Algorithms II-SECS-1021-03
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PPTX
history of c programming in notes for students .pptx
PPTX
Introduction to Artificial Intelligence
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PDF
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
PDF
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
PPTX
ISO 45001 Occupational Health and Safety Management System
PDF
Digital Strategies for Manufacturing Companies
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PPT
Introduction Database Management System for Course Database
PDF
How to Choose the Right IT Partner for Your Business in Malaysia
PDF
System and Network Administraation Chapter 3
PPTX
CHAPTER 12 - CYBER SECURITY AND FUTURE SKILLS (1) (1).pptx
PPTX
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
PPTX
Online Work Permit System for Fast Permit Processing
PDF
2025 Textile ERP Trends: SAP, Odoo & Oracle
PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
Design an Analysis of Algorithms II-SECS-1021-03
VVF-Customer-Presentation2025-Ver1.9.pptx
history of c programming in notes for students .pptx
Introduction to Artificial Intelligence
Internet Downloader Manager (IDM) Crack 6.42 Build 41
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
ISO 45001 Occupational Health and Safety Management System
Digital Strategies for Manufacturing Companies
Which alternative to Crystal Reports is best for small or large businesses.pdf
Introduction Database Management System for Course Database
How to Choose the Right IT Partner for Your Business in Malaysia
System and Network Administraation Chapter 3
CHAPTER 12 - CYBER SECURITY AND FUTURE SKILLS (1) (1).pptx
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
Online Work Permit System for Fast Permit Processing
2025 Textile ERP Trends: SAP, Odoo & Oracle
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus

Provisioning Datadog with Terraform