We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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.
Default should be respected, when the option rest.action.multi.allow_explicit_index is not defined it should not update every time Terraform runs.
Tested on 0.23.0 and 0.24.1.
Low because workaround works fine.
Define
The text was updated successfully, but these errors were encountered:
I saw the same thing today
Sorry, something went wrong.
No branches or pull requests
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
}
The text was updated successfully, but these errors were encountered: