[BUG] analysis_*
options not applied unless there's other settings present
#239
Labels
bug
Something isn't working
What is the bug?
Creating an
index
resource with onlymappings
andanalysis_analyzer
fails with 400 saying analyzers are not defined.After a lot of debugging and looking through the source, I noticed that the
analysis
field does not get sent over the API unless there's at least one more setting passed.The code that filters this out is here:
terraform-provider-opensearch/provider/resource_opensearch_index.go
Lines 449 to 451 in 59aec32
For a simpler repro, you can just create an index with just
analysis_analyzer
. It'll pass, but the index will have no settingsAs a workaround, adding any other setting like
number_of_replicas = "0"
fixes itHow can one reproduce the bug?
This resource block should work:
Currently, this errors:
What is the expected behavior?
It creates an index with the appropriate settings/mappings
What is your host/environment?
macOS Sequoia 15.3
Do you have any screenshots?
If applicable, add screenshots to help explain your problem.
Do you have any additional context?
Going through the code a bit, I'm 99% sure it's this statement here:
terraform-provider-opensearch/provider/resource_opensearch_index.go
Lines 449 to 451 in 59aec32
If there's no settings in the keys defined above, the
settings
block just doesn't get attached to the body, so it doesn't get sent. After I added a setting in that list, it workedThe text was updated successfully, but these errors were encountered: