Table of Contents

The Error

When working with Terraform, you may encounter this error:

Error: Inconsistent conditional result types

This error can block your entire workflow. Let’s understand why it happens and how to fix it.

What Causes This Error

A ternary condition returns different types in its true and false branches (e.g., string vs number).

How to Fix It

Solution 1

Ensure both branches return the same type: condition ? tostring(val) : default_string

Solution 2

Use explicit type conversion: tonumber(), tostring(), tolist(), toset()

Solution 3

For null handling: condition ? value : null (null is compatible with any type)

Solution 4

Split complex conditionals into locals with explicit type declarations.

Prevention Tips

  • Always run terraform validate before terraform plan
  • Use terraform fmt to keep configuration clean and readable
  • Pin provider versions to avoid unexpected schema changes
  • Review plan output carefully before applying

Learn More

Conclusion

This error is common but straightforward to fix. The key is understanding the root cause and applying the correct solution for your specific situation. Following the prevention tips above will help you avoid this error in future projects.