-
-
Notifications
You must be signed in to change notification settings - Fork 61
/
outputs.tf
34 lines (28 loc) · 904 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
25
26
27
28
29
30
31
32
33
34
output "backup_vault_id" {
value = local.vault_id
description = "Backup Vault ID"
}
output "backup_vault_arn" {
value = local.vault_arn
description = "Backup Vault ARN"
}
output "backup_plan_arn" {
value = join("", aws_backup_plan.default[*].arn)
description = "Backup Plan ARN"
}
output "backup_plan_version" {
value = join("", aws_backup_plan.default[*].version)
description = "Unique, randomly generated, Unicode, UTF-8 encoded string that serves as the version ID of the backup plan"
}
output "backup_selection_id" {
value = join("", aws_backup_selection.default[*].id)
description = "Backup Selection ID"
}
output "role_name" {
value = local.iam_role_name
description = "The name of the IAM role created"
}
output "role_arn" {
value = local.iam_role_arn
description = "The Amazon Resource Name (ARN) specifying the role"
}