Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
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.0
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
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

  1. Install the package
npm i --save cdk-datadog-integration
  1. 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

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc