-
Notifications
You must be signed in to change notification settings - Fork 0
/
output.tf
54 lines (44 loc) · 1.97 KB
/
output.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
output "api_gateway_invoke_url" {
description = "This is the inferred API Gateway invoke URL which we use as allowed prefixes."
value = length(module.geff_snowalert) >= 1 ? module.geff_snowalert[0].api_gateway_invoke_url : null
}
output "api_integration_name" {
description = "Name of API integration"
value = length(module.geff_snowalert) >= 1 ? module.geff_snowalert[0].api_integration_name : null
}
output "storage_integration_name" {
description = "Name of Storage integration"
value = length(module.geff_snowalert) >= 1 ? module.geff_snowalert[0].storage_integration_name : null
}
output "bucket_url" {
description = "GEFF S3 Bucket URL"
value = length(module.geff_snowalert) >= 1 ? module.geff_snowalert[0].bucket_url : null
}
output "sns_topic_arn" {
description = "GEFF S3 SNS Topic to use while creating the Snowflake PIPE."
value = length(module.geff_snowalert) >= 1 ? module.geff_snowalert[0].sns_topic_arn : null
}
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
}
output "urlencode_function" {
description = "Function to urlencode a given variant object."
value = snowflake_function.urlencode.name
}