-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathoutputs.tf
34 lines (28 loc) · 1.25 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
30
31
32
33
34
output "cur_report_name" {
description = "Name of the CUR report created."
value = var.cur_report_enabled ? var.cur_report_name : null
}
output "cur_report_s3_prefix" {
description = "Name of the S3 prefix used by the CUR report."
value = var.cur_report_enabled ? var.cur_report_s3_prefix : null
}
output "data_export_name" {
description = "Name of the COR report created."
value = var.data_export_enabled ? var.data_export_name : null
}
output "data_export_s3_prefix" {
description = "Name of the S3 prefix used by the COR report."
value = var.data_export_enabled ? var.data_export_s3_prefix : null
}
output "vertice_account_ids" {
description = "Account IDs of Vertice allowed to access your AWS resources."
value = var.governance_role_enabled ? var.vertice_account_ids : null
}
output "vertice_governance_role_arn" {
description = "The ARN of VerticeGovernance role created."
value = var.governance_role_enabled ? one(module.vertice_governance_role[*].vertice_governance_role_arn) : null
}
output "vertice_governance_role_name" {
description = "The name of VerticeGovernance role created."
value = var.governance_role_enabled ? one(module.vertice_governance_role[*].vertice_governance_role_name) : null
}