-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
29 lines (24 loc) · 1.11 KB
/
outputs.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 "app_route53_record_name" {
description = "The domain name attached to the CCF app"
value = var.deploy_app ? aws_route53_record.app[0].name : ""
}
output "cur_target_iam_role_name" {
description = "The name of the IAM role in the target account to be assumed by the app instance"
value = var.deploy_app ? "" : aws_iam_role.cur[0].name
}
output "cur_glue_db_name" {
description = "The name of the Glue db containing the CUR table in the target account"
value = var.deploy_cur ? aws_glue_catalog_database.cur[0].name : ""
}
output "cur_glue_table_name" {
description = "The name of the Glue table containing the CUR in the target account"
value = var.deploy_cur ? aws_glue_catalog_table.cur[0].name : ""
}
output "cur_billing_bucket_id" {
description = "The id of the S3 bucket containing the CUR in the target account"
value = var.deploy_cur ? aws_s3_bucket.cur[0].id : ""
}
output "cur_query_result_bucket_id" {
description = "The id of the S3 bucket containing the Athena query results in the target account"
value = var.deploy_cur ? aws_s3_bucket.result[0].id : ""
}