Provides a Datadog IntegrationFastlyService resource. This can be used to create and manage Datadog integration_fastly_service.
resource "datadog_integration_fastly_account" "foo" {
api_key = "ABCDEFG123"
name = "test-name"
}
# Create new integration_fastly_service resource
resource "datadog_integration_fastly_service" "foo" {
account_id = datadog_integration_fastly_account.foo.id
tags = ["mytag", "mytag2:myvalue"]
service_id = "my-service-id"
}
service_id
(String) The ID of the Fastly service.account_id
(String) Fastly Account id.tags
(Set of String) A list of tags for the Fastly service.id
(String) The ID of this resource.Import is supported using the following syntax:
terraform import datadog_integration_fastly_service.new_list "service-id"