-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathoutputs.tf
More file actions
19 lines (16 loc) · 809 Bytes
/
outputs.tf
File metadata and controls
19 lines (16 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
output "assume_policy" {
description = "An array that is either empty (if no assume role policy was created) or contains a single element that is the policy allowing assumption of the role that can access the specified Terraform state."
value = aws_iam_policy.assume_read_terraform_state_role
}
output "policy" {
description = "The policy that can access the specified Terraform state."
value = module.read_terraform_state.policy
}
output "read_only" {
description = "A Boolean value indicating whether or not the role and policy are read-only. If false then the role and policy will allow write permissions."
value = var.read_only
}
output "role" {
description = "The role that can access the specified Terraform state."
value = module.read_terraform_state.role
}