Skip to content

Commit

Permalink
Merge pull request #57 from Snowflake-Labs/add-errors-table-output
Browse files Browse the repository at this point in the history
Add errors table output
  • Loading branch information
sfc-gh-pkommini authored Jan 24, 2023
2 parents ee13ad2 + c735be5 commit 38d0634
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions output.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,23 @@ output "geff_lambda_sg_ids" {
description = "Lambda SG IDs."
value = length(module.geff_snowalert) >= 1 ? module.geff_snowalert[0].geff_lambda_sg_ids : null
}

output "alert_query_rule_run_errors_view" {
description = "Alert query rule run errors table."
value = snowflake_view.alert_query_rule_run_errors.name
}

output "alert_suppression_rule_run_errors_view" {
description = "Alert supression rule run errors table."
value = snowflake_view.alert_suppression_rule_run_errors.name
}

output "violation_query_rule_run_errors_view" {
description = "Violation query rule run errors table."
value = snowflake_view.violation_query_rule_run_errors.name
}

output "violation_suppression_rule_run_errors_view" {
description = "Violation suppression rule run errors table."
value = snowflake_view.violation_suppression_rule_run_errors.name
}

0 comments on commit 38d0634

Please sign in to comment.