datadog_integration_aws_tag_filter (Resource)

Provides a Datadog AWS tag filter resource. This can be used to create and manage Datadog AWS tag filters.

Example Usage

# Create a new Datadog - Amazon Web Services integration tag filter
resource "datadog_integration_aws_tag_filter" "foo" {
  account_id     = "123456789010"
  namespace      = "sqs"
  tag_filter_str = "key:value"
}

Schema

Required

Read-Only

Import

Import is supported using the following syntax:

# Amazon Web Services log filter resource can be imported using their account ID and namespace separated with a colon (:).
terraform import datadog_integration_aws_tag_filter.foo ${account_id}:${namespace}