-
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
b/aws_evidently_feature - schema change WithoutTimeout to Context, description accept empty string #27948
b/aws_evidently_feature - schema change WithoutTimeout to Context, description accept empty string #27948
Conversation
Community NoteVoting for Prioritization
For Submitters
|
bd82a5a
to
e811ebd
Compare
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 TESTARGS='-run=TestAccEvidentlyFeature' PKG=evidently
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/evidently/... -v -count 1 -parallel 20 -run=TestAccEvidentlyFeature -timeout 180m
=== RUN TestAccEvidentlyFeature_basic
=== PAUSE TestAccEvidentlyFeature_basic
=== RUN TestAccEvidentlyFeature_updateDefaultVariation
=== PAUSE TestAccEvidentlyFeature_updateDefaultVariation
=== RUN TestAccEvidentlyFeature_updateDescription
=== PAUSE TestAccEvidentlyFeature_updateDescription
=== RUN TestAccEvidentlyFeature_updateEntityOverrides
=== PAUSE TestAccEvidentlyFeature_updateEntityOverrides
=== RUN TestAccEvidentlyFeature_updateEvaluationStrategy
=== PAUSE TestAccEvidentlyFeature_updateEvaluationStrategy
=== RUN TestAccEvidentlyFeature_updateVariationsBoolValue
=== PAUSE TestAccEvidentlyFeature_updateVariationsBoolValue
=== RUN TestAccEvidentlyFeature_updateVariationsDoubleValue
=== PAUSE TestAccEvidentlyFeature_updateVariationsDoubleValue
=== RUN TestAccEvidentlyFeature_updateVariationsLongValue
=== PAUSE TestAccEvidentlyFeature_updateVariationsLongValue
=== RUN TestAccEvidentlyFeature_updateVariationsStringValue
=== PAUSE TestAccEvidentlyFeature_updateVariationsStringValue
=== RUN TestAccEvidentlyFeature_tags
=== PAUSE TestAccEvidentlyFeature_tags
=== RUN TestAccEvidentlyFeature_disappears
=== PAUSE TestAccEvidentlyFeature_disappears
=== CONT TestAccEvidentlyFeature_basic
=== CONT TestAccEvidentlyFeature_updateVariationsDoubleValue
=== CONT TestAccEvidentlyFeature_tags
=== CONT TestAccEvidentlyFeature_updateEntityOverrides
=== CONT TestAccEvidentlyFeature_updateVariationsBoolValue
=== CONT TestAccEvidentlyFeature_updateEvaluationStrategy
=== CONT TestAccEvidentlyFeature_disappears
=== CONT TestAccEvidentlyFeature_updateVariationsStringValue
=== CONT TestAccEvidentlyFeature_updateDescription
=== CONT TestAccEvidentlyFeature_updateVariationsLongValue
=== CONT TestAccEvidentlyFeature_updateDefaultVariation
--- PASS: TestAccEvidentlyFeature_disappears (22.91s)
--- PASS: TestAccEvidentlyFeature_basic (24.64s)
--- PASS: TestAccEvidentlyFeature_updateEvaluationStrategy (33.22s)
--- PASS: TestAccEvidentlyFeature_updateDescription (34.12s)
--- PASS: TestAccEvidentlyFeature_updateVariationsBoolValue (34.59s)
--- PASS: TestAccEvidentlyFeature_updateDefaultVariation (34.98s)
--- PASS: TestAccEvidentlyFeature_updateVariationsDoubleValue (35.29s)
--- PASS: TestAccEvidentlyFeature_updateEntityOverrides (35.49s)
--- PASS: TestAccEvidentlyFeature_updateVariationsLongValue (35.76s)
--- PASS: TestAccEvidentlyFeature_updateVariationsStringValue (44.41s)
--- PASS: TestAccEvidentlyFeature_tags (44.44s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/evidently 47.594s
@GlennChia thanks for the contribution 🎉 👏🏾 ! |
This functionality has been released in v4.46.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
Since this resource has waiters, the schema should be changed to use
Context
instead ofWithoutTimeout
Relations
Relates #27395
References
Description has valid range from 0 to 160 https://docs.aws.amazon.com/cloudwatchevidently/latest/APIReference/API_CreateFeature.html#cloudwatchevidently-CreateFeature-request-description
Output from Acceptance Testing