-
Notifications
You must be signed in to change notification settings - Fork 9.4k
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
feat: increase max values for lf tags #26546
feat: increase max values for lf tags #26546
Conversation
@ewbankkit Any chance this get reviewed soon? We're also interested. |
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=lakeformation TESTS="TestAccLakeFormation_serial/^LFTags"
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/lakeformation/... -v -count 1 -parallel 20 -run='TestAccLakeFormation_serial/^LFTags' -timeout 180m
--- PASS: TestAccLakeFormation_serial (116.51s)
--- PASS: TestAccLakeFormation_serial/LFTags (116.51s)
--- PASS: TestAccLakeFormation_serial/LFTags/valuesOverFifty (39.31s)
--- PASS: TestAccLakeFormation_serial/LFTags/basic (17.12s)
--- PASS: TestAccLakeFormation_serial/LFTags/disappears (16.06s)
--- PASS: TestAccLakeFormation_serial/LFTags/tagKeyComplex (14.50s)
--- PASS: TestAccLakeFormation_serial/LFTags/values (29.52s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/lakeformation 119.807s
@frco9 thanks for the contribution! 🎉 |
This functionality has been released in v4.61.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. |
Community Note
Feature details
When using the AWS console to create a LF Tag and its values, we can only define 15 values. However when using the
aws cli
and the API, the maximum values allowed per call is 50. Furthermore, it's indicated in this documentation that the soft-limit for values per tag is 1000.This PR allows user to create tag values up to this limit.
Output from acceptance testing:
Closes #26633