--- # generated by https://github.com/hashicorp/terraform-plugin-docs page_title: "opensearch_ingest_pipeline Resource - terraform-provider-opensearch" subcategory: "" description: |- Provides an Opensearch ingest pipeline resource. --- # opensearch_ingest_pipeline (Resource) Provides an Opensearch ingest pipeline resource. ## Example Usage ```terraform # Create a simple ingest pipeline resource "opensearch_ingest_pipeline" "test" { name = "terraform-test" body = < ## Schema ### Required - `body` (String) The JSON body of the ingest pipeline - `name` (String) The name of the ingest pipeline ### Read-Only - `id` (String) The ID of this resource. ## Import Import is supported using the following syntax: ```shell terraform import opensearch_ingest_pipeline.test terraform-test ```