-
Notifications
You must be signed in to change notification settings - Fork 9
/
output.tf
29 lines (24 loc) · 1014 Bytes
/
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
output "api_gateway_invoke_url" {
description = "This is the inferred API Gateway invoke URL which we use as allowed prefixes."
value = aws_api_gateway_deployment.geff_api_gw_deployment.invoke_url
}
output "api_integration_name" {
description = "Name of API integration"
value = snowflake_api_integration.geff_api_integration.name
}
output "storage_integration_name" {
description = "Name of Storage integration"
value = module.storage_integration.storage_integration_name
}
output "bucket_url" {
description = "GEFF S3 Bucket URL"
value = module.storage_integration.bucket_url
}
output "sns_topic_arn" {
description = "GEFF S3 SNS Topic to use while creating the Snowflake PIPE."
value = module.storage_integration.sns_topic_arn
}
output "geff_lambda_sg_ids" {
description = "Lambda SG IDs."
value = var.deploy_lambda_in_vpc && length(var.lambda_security_group_ids) == 0 ? [aws_security_group.geff_lambda_sg.0.id] : var.lambda_security_group_ids
}