terraform-aws-elasticsearch
terraform-aws-elasticsearch copied to clipboard
rest.action.multi.allow_explicit_index within block advanced_options default not respected
Describe the Bug
When you do not explicitly define
advanced_options = { "rest.action.multi.allow_explicit_index" = true }
Terraform will try to update the value of rest.action.multi.allow_explicit_index from true to null every time even when there are no other changes.
Expected Behavior
Default should be respected, when the option rest.action.multi.allow_explicit_index is not defined it should not update every time Terraform runs.
Environment (please complete the following information):
Tested on 0.23.0 and 0.24.1.
Priority
Low because workaround works fine.
Workaround
Define
advanced_options = { "rest.action.multi.allow_explicit_index" = true }
I saw the same thing today