Provides a Datadog IntegrationConfluentResource resource. This can be used to create and manage Datadog integration_confluent_resource.
resource "datadog_integration_confluent_account" "foo" {
api_key = "TESTAPIKEY123"
api_secret = "test-api-secret-123"
tags = ["mytag", "mytag2:myvalue"]
}
# Create new integration_confluent_resource resource
resource "datadog_integration_confluent_resource" "foo" {
account_id = datadog_integration_confluent_account.foo.id
resource_id = "123456"
resource_type = "kafka"
tags = ["mytag", "mytag2:myvalue"]
}
account_id
(String) Confluent Account ID.resource_id
(String) The ID associated with a Confluent resource.enable_custom_metrics
(Boolean) Enable the custom.consumer_lag_offset
metric, which contains extra metric tags. Defaults to false
.resource_type
(String) The resource type of the Resource. Can be kafka
, connector
, ksql
, or schema_registry
.tags
(Set of String) A list of strings representing tags. Can be a single key, or key-value pairs separated by a colon.id
(String) The ID of this resource.Import is supported using the following syntax:
terraform import datadog_integration_confluent_resource.new_list "confluent_account_id:confluent_resource_id"