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
We have table net_dns_record where domain is required to perform the LIST operation.
We have a use case where we have a CSV file (domains.csv) containing a list of domains, and we will use these domains to query the net_dns_record table.
domains.csv
domain
steampipe.io
Query:
selectQ.domain,
N.valuefrom
domains Q
left join
net_dns_record N
onN.domain= concat('_dmarc.', Q.domain)
andN.type='TXT'
When executing the above query, getting below error
We have table
net_dns_record
wheredomain
is required to perform theLIST
operation.We have a use case where we have a CSV file (
domains.csv
) containing a list of domains, and we will use these domains to query thenet_dns_record
table.domains.csv
Query:
When executing the above query, getting below error
The text was updated successfully, but these errors were encountered: