Skip to content
New issue

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

TFECO-9206 Add validation to check whether the identity that we're about to send back to Terraform is complete #1460

Open
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

ansgarm
Copy link
Member

@ansgarm ansgarm commented Mar 27, 2025

based on #1459

@ansgarm ansgarm requested a review from a team as a code owner March 27, 2025 13:04
@ansgarm ansgarm changed the title Add validation to check whether the identity that we're about to send back to Terraform is complete TFECO-9206 Add validation to check whether the identity that we're about to send back to Terraform is complete Mar 27, 2025
Base automatically changed from schema-identity-func to main March 27, 2025 14:33
Comment on lines +932 to +939
// validate every attribute exists and is not null
identityAttrs := newIdentityVal.AsValueMap()
for k := range identityBlock.Attributes {
if v, ok := identityAttrs[k]; !ok || v.IsNull() || !v.IsWhollyKnown() {
resp.Diagnostics = convert.AppendProtoDiag(ctx, resp.Diagnostics, fmt.Errorf("identity data missing for attribute '%s'. This is a bug in the provider, which should be reported in the provider's own issue tracker.", k))
return resp, nil
}
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wondering if we should duplicate this validation in the provider? We know core needs/will have this logic at some point and we don't typically do validation like this in the SDKs. (For example, ReadResource it's invalid to return a NewState that has unknown values, which core validates, but the SDKs do not)


If we do decide that we want to validate this in the providers, we might consider doing it at the terraform-plugin-go level, so it applies to terraform-plugin-framework as well

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good call!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants