terraform-aws-elasticsearch icon indicating copy to clipboard operation
terraform-aws-elasticsearch copied to clipboard

rest.action.multi.allow_explicit_index within block advanced_options default not respected

Open TerryWahl opened this issue 5 years ago • 1 comments

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 }

TerryWahl avatar Nov 19 '20 21:11 TerryWahl

I saw the same thing today

crosbymichael1 avatar Mar 22 '21 23:03 crosbymichael1