-
Notifications
You must be signed in to change notification settings - Fork 9.8k
New action: aws_transcribe_start_transcription_job
#44445
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Community GuidelinesThis comment is added to every new Pull Request to provide quick reference to how the Terraform AWS Provider is maintained. Please review the information below, and thank you for contributing to the community that keeps the provider thriving! 🚀 Voting for Prioritization
Pull Request Authors
|
aws_transcribe_start_transcription_job
cde0427
to
5c2e16f
Compare
50cd218
to
943b636
Compare
Most recent: % make t T=TestAccTranscribeStartTranscriptionJobAction_ K=transcribe
make: Verifying source code with gofmt...
==> Checking that code complies with gofmt requirements...
make: Running acceptance tests on branch: 🌿 f-transcribe-start-transcription-job 🌿...
TF_ACC=1 go1.24.6 test ./internal/service/transcribe/... -v -count 1 -parallel 20 -run='TestAccTranscribeStartTranscriptionJobAction_' -timeout 360m -vet=off
2025/09/30 17:15:45 Creating Terraform AWS Provider (SDKv2-style)...
2025/09/30 17:15:45 Initializing Terraform AWS Provider (SDKv2-style)...
=== RUN TestAccTranscribeStartTranscriptionJobAction_basic
=== PAUSE TestAccTranscribeStartTranscriptionJobAction_basic
=== RUN TestAccTranscribeStartTranscriptionJobAction_identifyLanguage
=== PAUSE TestAccTranscribeStartTranscriptionJobAction_identifyLanguage
=== RUN TestAccTranscribeStartTranscriptionJobAction_withOutputLocation
=== PAUSE TestAccTranscribeStartTranscriptionJobAction_withOutputLocation
=== CONT TestAccTranscribeStartTranscriptionJobAction_basic
=== CONT TestAccTranscribeStartTranscriptionJobAction_withOutputLocation
=== CONT TestAccTranscribeStartTranscriptionJobAction_identifyLanguage
--- PASS: TestAccTranscribeStartTranscriptionJobAction_identifyLanguage (16.91s)
--- PASS: TestAccTranscribeStartTranscriptionJobAction_basic (17.07s)
--- PASS: TestAccTranscribeStartTranscriptionJobAction_withOutputLocation (17.72s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/transcribe 22.869s |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 🚀.
Warning This Issue has been closed, meaning that any additional comments are much easier for the maintainers to miss. Please assume that the maintainers will not see them. Ongoing conversations amongst community members are welcome, however, the issue will be locked after 30 days. Moving conversations to another venue, such as the AWS Provider forum, is recommended. If you have additional concerns, please open a new issue, referencing this one where needed. |
This functionality has been released in v6.16.0 of the Terraform AWS Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you! |
Rollback Plan
If a change needs to be reverted, we will publish an updated version of the library.
Changes to Security Controls
Are there any changes to security controls (access controls, encryption, logging) in this pull request? If so, explain.
Description
This PR adds the
aws_transcribe_start_transcription_job
action, which enables imperative starting of Amazon Transcribe transcription jobs within Terraform workflows. The action accepts a media file URI from S3 and transcription job configuration (language code or automatic language detection), starts the transcription job via the AWS API, and waits for it to reach "IN_PROGRESS" or "COMPLETED" status before returning. This allows users to trigger transcription jobs as part of their infrastructure deployments, such as processing uploaded audio files or integrating transcription into CI/CD pipelines, while maintaining Terraform's declarative approach for the underlying infrastructure resources.Relations
Depends #44465
Relates:
aws_ec2_stop_instance
#43700aws_cloudfront_create_invalidation
#43955aws_lambda_invoke
#43972aws_ses_send_email
#44214aws_sns_publish
#44232aws_codebuild_start_build
#44444aws_transcribe_start_transcription_job
#44445aws_sfn_start_execution
#44464References
Output from Acceptance Testing