Skip to content
This repository has been archived by the owner on Dec 17, 2022. It is now read-only.

andrewthetechie/cq-provider-datadog

Repository files navigation

cloudquery logo cloudquery logo

CloudQuery Datadog Provider

Go Version BuildStatus License Issures Last Commit

This CloudQuery provider transforms Datadog resources to a relational database.

What is CloudQuery

The open-source cloud asset inventory powered by SQL.

CloudQuery extracts, transforms, and loads your cloud assets into normalized PostgreSQL tables. CloudQuery enables you to assess, audit, and evaluate the configurations of your cloud assets.

Links

Example Config

cloudquery {
  plugin_directory = "./cq/providers"
  policy_directory = "./cq/policies"

  provider "datadog" {
    version = "latest"
  }

  connection {
  }
}

provider "datadog" {
  configuration {

    accounts "main" {
      api_key = "DATADOG API KEY"
      app_key = "DATADOG APP KEY"
    }

    accounts "staging" {
      api_key = "DATADOG API KEY"
      app_key = "DATADOG APP KEY"
    }

  }
  // list of resources to fetch
  resources = ["*"]
}

Resources this Provider Covers

Current Limitations

This is a very early provider and has some rough edges. Table layout should be expected to change.

Most resources are just cq-gen's best approximation of a good structure for the object and have not been optimized.

Developer Guide

See CONTRIBUTING.md for info on how to contribute to cq-provider-datadog