Terraform modules: provider constraints and upper and lower bounds #208
-
A customer asked:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
There are some situations where a high lower bound, e.g.; In general, we find that setting a lower bound is not very flexible and has the potential to cause issues we're not aware of, so we try to avoid setting a high lower bound, or a lower bound at all, wherever possible. |
Beta Was this translation helpful? Give feedback.
There are some situations where a high lower bound, e.g.;
> 3.0, < 4.0
, could cause problems. For example, there might be a bug for a resource in the newer provider versions and you'd like to explicitly avoid the broken versions.In general, we find that setting a lower bound is not very flexible and has the potential to cause issues we're not aware of, so we try to avoid setting a high lower bound, or a lower bound at all, wherever possible.