You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

cdk-datadog-integration

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cdk-datadog-integration

This construct makes it easy to integrate your AWS account with Datadog. It creates nested stacks based on the official [Datadog Cloudformation templates](https://github.com/DataDog/cloudformation-template/blob/master/aws/main.yaml) using [Amazon Cloud De

1.0.1
Source
npmnpm
Version published
Weekly downloads
253
-35.79%
Maintainers
1
Weekly downloads
 
Created
Source

AWS Cloud Development Kit (CDK) Datadog Integration

This construct makes it easy to integrate your AWS account with Datadog. It creates nested stacks based on the official Datadog Cloudformation templates using Amazon Cloud Development Kit (CDK).

Basic Usage

  • Install the package
npm i --save cdk-datadog-integration
  • Import the stack and pass the required parameters.
import * as cdk from "@aws-cdk/core";
import * as secrets from "@aws-cdk/aws-secretsmanager";
import { DatadogIntegrationStack } from "cdk-datadog-integration";

const app = new cdk.App();
new DatadogIntegrationStack(app, "DatadogIntegration", {
  // Generate an ID here: https://app.datadoghq.com/account/settings#integrations/amazon-web-services
  externalId: "",

  // Create or lookup a `Secret` that contains your Datadog API Key
  // Get your API key here: https://app.datadoghq.com/account/settings#api
  apiKey: secrets.Secret.fromSecretArn(
    app,
    "DatadogApiKey",
    "arn:aws:secretsmanager:<your region>:<your account>:secret:<your secret name>"
  ),
});

Configuration

Use DatadogIntegrationConfig to set additional configuration parameters. Check out docs for more details on what's available.

Contributing

PRs are welcome!

Releasing

To release, use npm version and push the tag.

Keywords

cdk

FAQs

Package last updated on 25 Apr 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts