turbot / steampipe-mod-ibm-compliance

Run individual controls or full compliance benchmarks for CIS across all of your IBM Cloud accounts using Powerpipe and Steampipe.
https://hub.powerpipe.io/mods/turbot/ibm_compliance
Apache License 2.0
2 stars 0 forks source link

Update from sql= to query= throughout the compliance #25

Closed madhushreeray30 closed 1 year ago

madhushreeray30 commented 1 year ago

This occurs throughout the mod, but as a specific example:

control "cis_v100_1_1" { 
title         = "1.1 Monitor account owner for frequent, unexpected, or unauthorized logins" 
description   = "Monitor login activity of the account owner to prevent unauthorized usage of the privileged account." 
documentation = file("./cis_v100/docs/cis_v100_1_1.md") 
sql           = query.manual_control.sql 

tags = merge(local.cis_v100_1_common_tags, { 
 cis_item_id = "1.1" 
 cis_level   = "1" 
 cis_type    = "manual" 
 service     = "IBM/IAM" 
}) 
} 

This is changed from:

  sql           = query.manual_control.sql

to:

  query         = query.manual_control
github-actions[bot] commented 1 year ago

'This PR is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 30 days.'