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
I followed the terrascan documentation for how to disable a specific rule, and ran my pipeline again, but my ignore comment isn't being honored. Firstly, am I understanding the method to ignore rules correctly? Here's an example:
#"ts:skip=AWS.DynamoDb.Logging.Medium.007 PITR not needed for state lock table
resource "aws_dynamodb_table" "terraform_state_lock" {
name = "terraform-state-lock"
billing_mode = "PAY_PER_REQUEST"
hash_key = "LockID"
attribute {
name = "LockID"
type = "S"
}
server_side_encryption {
enabled = true
}
}
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I followed the terrascan documentation for how to disable a specific rule, and ran my pipeline again, but my ignore comment isn't being honored. Firstly, am I understanding the method to ignore rules correctly? Here's an example:
Beta Was this translation helpful? Give feedback.
All reactions