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
jsonb_array_elements(s3_job_definition -> 'BucketDefinitions') as d,
jsonb_array_elements(d -> 'Buckets') as b
)
We should use jsonb_array_elements_text instead of trim?
with bucket_list as (
select
jsonb_array_elements_text(d -> 'Buckets') as bucket_name
from
aws_macie2_classification_job,
jsonb_array_elements(s3_job_definition -> 'BucketDefinitions') as d
)
This change should achieve the same result without using the trim function.
The implicit use of s3_job_definition is also confusing and could be improved?
The text was updated successfully, but these errors were encountered:
For this code:
steampipe-mod-aws-compliance/conformance_pack/s3.pp
Lines 1173 to 1180 in 1c5c58a
We should use jsonb_array_elements_text instead of trim?
This change should achieve the same result without using the trim function.
The implicit use of
s3_job_definition
is also confusing and could be improved?The text was updated successfully, but these errors were encountered: