Resource: aws_transcribe_vocabulary_filter

Terraform resource for managing an AWS Transcribe VocabularyFilter.

Example Usage

Basic Usage

resource "aws_transcribe_vocabulary_filter" "example" {
  vocabulary_filter_name = "example"
  language_code          = "en-US"
  words                  = ["cars", "bucket"]

  tags = {
    tag1 = "value1"
    tag2 = "value3"
  }
}

Argument Reference

The following arguments are required:

The following arguments are optional:

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 Transcribe VocabularyFilter using the vocabulary_filter_name. For example:

import {
  to = aws_transcribe_vocabulary_filter.example
  id = "example-name"
}

Using terraform import, import Transcribe VocabularyFilter using the vocabulary_filter_name. For example:

% terraform import aws_transcribe_vocabulary_filter.example example-name