CloudProvider: Allow unhandled values in metrics list validation #2015
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
We've seen a common use case where customers want to modularize the use of cloud provider observability, into a terraform module, and inject the "service" or "metrics" configuration as variables.
Once such case is the following:
When using this in a test module, with the latest version, terraform fails even before planning in the validation stage with:
More details in:
Which indicates in
tf_rpc=ValidateResourceTypeConfig
that this came from this bit of type being mapped to the plan config.Looking at the difference with the other validators, such as this, once can see that the third parameter of
ElementsAs
, namedallows unhandled
is used:Reading more in depth, this comes from that during the validation stage, which is before planning, variables values injected into
for_each
statements for example, are not resolves until plan, but handled as unknown. That's why allowing thisElementsAs
to allow unhandled values such as unknowns is the right choice, and a design decision in terraform.This PR fixes this.