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

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

Merged
merged 1 commit into from
Apr 4, 2023

Conversation

madhushreeray30
Copy link
Contributor

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

control "cis_v110_1_9" { 
title         = "1.9 Ensure user customer secret keys rotate within 90 days or less" 
description   = "Object Storage provides an API to enable interoperability with Amazon S3. To use this Amazon S3 Compatibility API, you need to generate the signing key required to authenticate with Amazon S3. This special signing key is an Access Key/Secret Key pair. Oracle generates the Customer Secret key to pair with the Access Key." 
sql           = query.identity_user_customer_secret_key_age_90.sql 
documentation = file("./cis_v110/docs/cis_v110_1_9.md") 

tags = merge(local.cis_v110_1_common_tags, { 
 cis_item_id = "1.9" 
 cis_level   = "1" 
 cis_type    = "automated" 
 service     = "OCI/Identity" 
}) 
}

This is changed from:

  sql           = query.identity_user_customer_secret_key_age_90.sql

to:

  query         = query.identity_user_customer_secret_key_age_90

@misraved misraved merged commit 9edfe99 into release/v0.8 Apr 4, 2023
@misraved misraved deleted the issue-57-closes branch April 4, 2023 06:14
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.

Controls should reference their query using query = rather than sql =
2 participants