-
Notifications
You must be signed in to change notification settings - Fork 9.2k
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
[New Resource] aws_rekognition_stream_processor
#37536
Conversation
Community NoteVoting for Prioritization
For Submitters
|
Specifically, removes ARN and KMS key ID validation in favor of AWS server-side validation. Also moves regular expression initialization to the package level so memory is not allocated on each call to the Schema method.
…e default The AWS documentation does not specify a default value for this argument.
SingleNestedBlock is not broadly tested. The Terraform Plugin Framework documentation suggests using SingleNestedAttribute instead, which the AWS provider cannot currently adopt due to continued support of Terraform protocol V5. Given these constraints the current preferred convention is to use ListNestedBlock with a SizeAtMost(1) list validator.
Also renames the `arn` attribute to `stream_processor_arn` to align with the AWS API.
This is already provided by the embedded `framework.WithImportByID` struct.
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 🎉
% make testacc PKG=rekognition TESTS=TestAccRekognitionStreamProcessor_
make: Verifying source code with gofmt...
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go1.22.5 test ./internal/service/rekognition/... -v -count 1 -parallel 20 -run='TestAccRekognitionStreamProcessor_' -timeout 360m
--- PASS: TestAccRekognitionStreamProcessor_disappears (95.06s)
--- PASS: TestAccRekognitionStreamProcessor_basic (97.00s)
--- PASS: TestAccRekognitionStreamProcessor_faceRecognition_boundingBox (104.94s)
--- PASS: TestAccRekognitionStreamProcessor_faceRecognition_polygon (104.97s)
--- PASS: TestAccRekognitionStreamProcessor_connectedHome (105.40s)
--- PASS: TestAccRekognitionStreamProcessor_faceRecognition (107.02s)
--- PASS: TestAccRekognitionStreamProcessor_tags (120.70s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/rekognition 126.632s
Thanks for your contribution, @bruceharrison1984! 👍 |
Thanks for whipping it into shape @jar-b |
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.
Tests still passing after latest additions:
% make testacc PKG=rekognition TESTS=TestAccRekognitionStreamProcessor_
make: Verifying source code with gofmt...
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go1.22.5 test ./internal/service/rekognition/... -v -count 1 -parallel 20 -run='TestAccRekognitionStreamProcessor_' -timeout 360m
--- PASS: TestAccRekognitionStreamProcessor_disappears (94.71s)
--- PASS: TestAccRekognitionStreamProcessor_basic (97.21s)
--- PASS: TestAccRekognitionStreamProcessor_faceRecognition_boundingBox (104.64s)
--- PASS: TestAccRekognitionStreamProcessor_faceRecognition_polygon (104.96s)
--- PASS: TestAccRekognitionStreamProcessor_connectedHome (105.45s)
--- PASS: TestAccRekognitionStreamProcessor_faceRecognition (107.28s)
--- PASS: TestAccRekognitionStreamProcessor_tags (118.75s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/rekognition 124.688s
This functionality has been released in v5.59.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! |
I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. |
Description
The adds the
aws_rekognition_stream_processor
resource to the provider.API Docs
Output from Acceptance Testing