Closed gdavison closed 1 year ago
Voting for Prioritization
Volunteering to Work on This Issue
Multiple values is not actually supported by the API:
InvalidInputException: Tag value wild card was found or input tag value list has size not equal to 1
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.
Terraform Core Version
N/A
AWS Provider Version
v5.4.0
Affected Resource(s)
aws_lakeformation_resource_lf_tags
Expected Behavior
I should be able to associate multiple LF-Tags from the same set with a resource.
Actual Behavior
Apply fails with the error
Relevant Error/Panic Output Snippet
No response
Terraform Configuration Files
resource "aws_lakeformation_resource_lf_tags" "test" { database { name = aws_glue_catalog_database.test.name }
lf_tag { key = aws_lakeformation_lf_tag.test.key value = "one" }
lf_tag { key = aws_lakeformation_lf_tag.test.key value = "two" } }
resource "aws_lakeformation_lf_tag" "test" { key = "key" values = ["one", "two"] }
Steps to Reproduce
Apply the configuration
Debug Output
No response
Panic Output
No response
Important Factoids
No response
References
No response
Would you like to implement a fix?
None