You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi @rrati -
I'm sorry you've come across this bug. It is a known issue, #15605
I'm going to close this ticket so we can consolidate the conversation in #15605
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.
ghost
locked and limited conversation to collaborators
Apr 3, 2020
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Terraform Version
Terraform v0.11.5
Terraform Configuration Files
locals {
version_split = "${split(",", var.os_version)}"
minor = "${length(local.version_split) >= 2 ? "${local.version_split[1]}" : "0"}"
}
variable os_version{
type = "string"
default = ""
}
...
Debug Output
https://gist.github.com/rrati/95ba6a157158a157b16982dca20cec9e
Crash Output
Expected Behavior
Should have evaluated the conditional portion and then only evaluated either the true or false portion based upon the result.
Actual Behavior
Both true and false portions of the conditional are evaluated all the time.
Steps to Reproduce
Additional Context
References
The text was updated successfully, but these errors were encountered: