Resource: aws_datapipeline_pipeline

Provides a DataPipeline Pipeline resource.

Example Usage

resource "aws_datapipeline_pipeline" "default" {
  name = "tf-pipeline-default"
}

Argument Reference

This resource supports the following arguments:

Attribute Reference

This resource exports the following attributes in addition to the arguments above:

Import

In Terraform v1.5.0 and later, use an import block to import aws_datapipeline_pipeline using the id (Pipeline ID). For example:

import {
  to = aws_datapipeline_pipeline.default
  id = "df-1234567890"
}

Using terraform import, import aws_datapipeline_pipeline using the id (Pipeline ID). For example:

% terraform import aws_datapipeline_pipeline.default df-1234567890