-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
39 lines (32 loc) · 1.03 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 "plan_arn" {
description = "Plan ARN."
value = "${module.plan.plan_arn}"
}
output "plan_id" {
description = "Plan ID"
value = "${module.plan.plan_id}"
}
output "plan_version" {
description = "Unique, randomly generated, Unicode, UTF-8 encoded string that serves as the version ID of the backup plan."
value = "${module.plan.plan_version}"
}
output "selection_id" {
description = "Backup Selection identifier."
value = "${module.selection.selection_id}"
}
output "vault_name" {
description = "The name of the vault."
value = "${module.vault.vault_name}"
}
output "vault_arn" {
description = "The ARN of the vault."
value = "${module.vault.vault_arn}"
}
output "vault_recovery_points" {
description = "The number of recovery points that are stored in a backup vault."
value = "${module.vault.vault_recovery_points}"
}
output "backup_iam_role_arn" {
description = "ARN for given IAM Role or newly created IAM Role."
value = "${module.selection.backup_iam_role_arn}"
}