-
-
Notifications
You must be signed in to change notification settings - Fork 178
/
outputs.tf
39 lines (32 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
30
31
32
33
34
35
36
37
38
39
output "s3_bucket_domain_name" {
value = one(aws_s3_bucket.default[*].bucket_domain_name)
description = "S3 bucket domain name"
}
output "s3_bucket_id" {
value = one(aws_s3_bucket.default[*].id)
description = "S3 bucket ID"
}
output "s3_bucket_arn" {
value = one(aws_s3_bucket.default[*].arn)
description = "S3 bucket ARN"
}
output "s3_replication_role_arn" {
value = one(aws_iam_role.replication[*].arn)
description = "The ARN of the IAM Role created for replication, if enabled."
}
output "dynamodb_table_name" {
value = one(aws_dynamodb_table.with_server_side_encryption[*].name)
description = "DynamoDB table name"
}
output "dynamodb_table_id" {
value = one(aws_dynamodb_table.with_server_side_encryption[*].id)
description = "DynamoDB table ID"
}
output "dynamodb_table_arn" {
value = one(aws_dynamodb_table.with_server_side_encryption[*].arn)
description = "DynamoDB table ARN"
}
output "terraform_backend_config" {
value = local.enabled ? local.terraform_backend_config_content : ""
description = "Rendered Terraform backend config file"
}