generated from opsd-io/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
43 lines (35 loc) · 1.15 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
40
41
42
43
output "region" {
description = "The region of the state storage resources."
sensitive = false
value = data.aws_region.current.name
}
output "bucket_name" {
description = "The name of the S3 Bucket to use for state storage."
sensitive = false
value = aws_s3_bucket.state.bucket
}
output "bucket_arn" {
description = "The ARN of the S3 Bucket."
sensitive = false
value = aws_s3_bucket.state.arn
}
output "dynamodb_table_name" {
description = "The name of DynamoDB Table to use for state locking and consistency."
sensitive = false
value = aws_dynamodb_table.state.name
}
output "dynamodb_table_arn" {
description = "The ARN of the DynamoDB Table."
sensitive = false
value = aws_dynamodb_table.state.arn
}
output "state_access_policy_name" {
description = "The name of the state access policy providing Terraform state access."
value = aws_iam_policy.state_access.name
sensitive = false
}
output "state_access_policy_arn" {
description = "The ARN of the state access policy providing Terraform state access."
value = aws_iam_policy.state_access.arn
sensitive = false
}