Provides a Datadog AWS tag filter resource. This can be used to create and manage Datadog AWS tag filters.
# 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"
}
account_id
(String) Your AWS Account ID without dashes.namespace
(String) The namespace associated with the tag filter entry. Valid values are elb
, application_elb
, sqs
, rds
, custom
, network_elb
, lambda
.tag_filter_str
(String) The tag filter string.id
(String) The ID of this resource.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}