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
Here, repository_name is a required qualifier, and either image_tag or image_digest is sufficient to make the API call.
Issue with Error Message:
When no any of optional key quals(image_tag or image_digest) are provided in the query, for example select * from aws_ecr_image_scan_finding where repository_name = 'test';
I receive the following error:
The error message incorrectly implies that bothimage_tag and image_digest are required, when in reality, any one of them is sufficient.
However, the table functionality works as expected. If we include either of the columns (image_tag or image_digest), such as in the query select * from aws_ecr_image_scan_finding where repository_name = 'test' and image_tag = 'latest', it executes successfully.
The text was updated successfully, but these errors were encountered:
For instance, in the
aws_ecr_image_scan_finding
table, the key column configuration is as follows:Here,
repository_name
is a required qualifier, and eitherimage_tag
orimage_digest
is sufficient to make the API call.Issue with Error Message:
When no any of optional key quals(image_tag or image_digest) are provided in the query, for example
select * from aws_ecr_image_scan_finding where repository_name = 'test';
I receive the following error:
The error message incorrectly implies that both
image_tag
andimage_digest
are required, when in reality, any one of them is sufficient.However, the table functionality works as expected. If we include either of the columns (
image_tag
orimage_digest
), such as in the queryselect * from aws_ecr_image_scan_finding where repository_name = 'test' and image_tag = 'latest'
, it executes successfully.The text was updated successfully, but these errors were encountered: