datadog_integration_fastly_service (Resource)

Provides a Datadog IntegrationFastlyService resource. This can be used to create and manage Datadog integration_fastly_service.

Example Usage

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"
}

Schema

Required

Optional

Read-Only

Import

Import is supported using the following syntax:

terraform import datadog_integration_fastly_service.new_list "service-id"