forked from aws-samples/aws-cudos-framework-deployment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
24 lines (20 loc) · 730 Bytes
/
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
output "cur_report_arn" {
description = "ARN of the Cost and Usage Report"
value = aws_cur_report_definition.this.arn
}
output "cur_bucket_arn" {
description = "ARN of the S3 Bucket where the Cost and Usage Report is delivered"
value = aws_s3_bucket.this.arn
}
output "cur_bucket_name" {
description = "Name of the S3 Bucket where the Cost and Usage Report is delivered"
value = aws_s3_bucket.this.bucket
}
output "replication_role_arn" {
description = "ARN of the IAM role created for S3 replication"
value = aws_iam_role.replication.arn
}
output "replication_role_name" {
description = "ARN of the IAM role created for S3 replication"
value = aws_iam_role.replication.name
}