Provides a Datadog IntegrationConfluentAccount resource. This can be used to create and manage Datadog integration_confluent_account.
# Create new integration_confluent_account resource
resource "datadog_integration_confluent_account" "foo" {
api_key = "TESTAPIKEY123"
api_secret = "test-api-secret-123"
tags = ["mytag", "mytag2:myvalue"]
}
api_key
(String) The API key associated with your Confluent account.api_secret
(String, Sensitive) The API secret associated with your Confluent account.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:
# Confluent account ID can be retrieved using the ListConfluentAccounts endpoint
# https://docs.datadoghq.com/api/latest/confluent-cloud/#list-confluent-accounts
terraform import datadog_integration_confluent_account.new_list "<ID>"